* {
    box-sizing: border-box;
}

:root {
    --bg: #0f172a;
    --bg-soft: rgba(30, 41, 59, 0.72);
    --panel: rgba(30, 41, 59, 0.56);
    --panel-strong: rgba(15, 23, 42, 0.88);
    --line: rgba(148, 163, 184, 0.22);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --soft: #94a3b8;
    --accent: #34d399;
    --accent-2: #14b8a6;
    --accent-dark: #059669;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 8%, rgba(16, 185, 129, 0.20), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(20, 184, 166, 0.18), transparent 28%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 48%, #0f172a 100%);
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 76%);
    z-index: -1;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78));
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    backdrop-filter: blur(18px);
}

.site-nav {
    height: 66px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #06251e;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 30px rgba(52, 211, 153, 0.28);
    font-size: 14px;
    font-weight: 900;
}

.brand-name {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #6ee7b7, #5eead4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 15px;
}

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

.nav-links a:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(30, 41, 59, 0.74);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    border-radius: 999px;
}

main {
    padding-top: 66px;
}

.hero-carousel {
    position: relative;
    height: 610px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 0.8s ease, transform 1.2s 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-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.80) 44%, rgba(15, 23, 42, 0.24) 100%),
        linear-gradient(0deg, rgba(15, 23, 42, 0.92) 0%, transparent 42%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1240px) / 2 + 24px));
    top: 50%;
    transform: translateY(-50%);
    max-width: 690px;
    padding-right: 24px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-summary {
    max-width: 610px;
    margin: 22px 0;
    color: var(--muted);
    font-size: clamp(18px, 2.2vw, 23px);
    line-height: 1.72;
}

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

.hero-tags span,
.detail-tags span,
.movie-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 11px;
    border-radius: 999px;
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(52, 211, 153, 0.28);
    font-size: 13px;
}

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

.primary-button,
.ghost-button,
.search-form button,
.search-tools button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.search-form button,
.search-tools button {
    border: 0;
    color: #052e25;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 18px 40px rgba(52, 211, 153, 0.28);
}

.primary-button:hover,
.search-form button:hover,
.search-tools button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 24px 50px rgba(52, 211, 153, 0.36);
}

.ghost-button {
    border: 1px solid rgba(148, 163, 184, 0.30);
    background: rgba(15, 23, 42, 0.52);
    color: var(--text);
}

.ghost-button:hover {
    transform: translateY(-2px);
    background: rgba(30, 41, 59, 0.82);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 999px;
    color: var(--text);
    background: rgba(15, 23, 42, 0.72);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
}

.hero-arrow:hover {
    color: var(--accent);
    background: rgba(15, 23, 42, 0.96);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(203, 213, 225, 0.50);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: var(--accent);
}

.search-panel,
.content-section,
.detail-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 22px 0;
}

.search-panel-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 28px;
    align-items: center;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.62);
    box-shadow: var(--shadow);
}

.search-panel h2,
.section-heading h2,
.page-hero h1,
.detail-content h1 {
    margin: 0;
}

.search-panel h2,
.section-heading h2 {
    font-size: clamp(26px, 4vw, 38px);
    letter-spacing: -0.04em;
}

.search-form,
.search-tools {
    display: flex;
    gap: 12px;
}

.search-form input,
.search-tools input,
.search-tools select {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    padding: 0 18px;
    color: var(--text);
    background: rgba(30, 41, 59, 0.78);
    outline: none;
}

.search-form input:focus,
.search-tools input:focus,
.search-tools select:focus {
    border-color: rgba(52, 211, 153, 0.62);
    box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.10);
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.category-chips a {
    padding: 10px 16px;
    border: 1px solid rgba(52, 211, 153, 0.24);
    border-radius: 999px;
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}

.category-chips a:hover {
    background: rgba(16, 185, 129, 0.22);
    transform: translateY(-2px);
}

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

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

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

.movie-card {
    min-width: 0;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.52);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 211, 153, 0.50);
    box-shadow: 0 22px 50px rgba(16, 185, 129, 0.12);
}

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

.movie-poster {
    position: relative;
    height: 250px;
    margin: 0;
    overflow: hidden;
    background: #020617;
}

.movie-card-large .movie-poster {
    height: 340px;
}

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.20), transparent);
}

.movie-tags {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
}

.movie-tags span {
    min-height: 24px;
    padding: 3px 9px;
    font-size: 12px;
}

.rank-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #052e25;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

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

.movie-card-body h3 {
    margin: 0 0 9px;
    font-size: 18px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

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

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

.movie-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #94a3b8;
    font-size: 13px;
}

.movie-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.movie-meta span::before,
.detail-meta span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

.tinted-section {
    max-width: none;
    margin-top: 70px;
    padding: 70px max(22px, calc((100vw - 1240px) / 2 + 22px));
    background: rgba(15, 23, 42, 0.34);
}

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

.scroller-controls {
    display: flex;
    gap: 10px;
}

.scroller-controls button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: rgba(30, 41, 59, 0.72);
    cursor: pointer;
}

.horizontal-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 312px;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
}

.horizontal-scroller::-webkit-scrollbar {
    display: none;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

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

.mixed-grid .movie-card:first-child {
    grid-row: span 2;
}

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.66);
}

.ranking-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.ranking-list a {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.54);
    transition: background 0.2s ease;
}

.ranking-list a:hover {
    background: rgba(16, 185, 129, 0.13);
}

.ranking-list strong {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #052e25;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.ranking-list span {
    display: block;
    color: var(--text);
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ranking-list em {
    display: block;
    margin-top: 3px;
    color: var(--soft);
    font-style: normal;
    font-size: 12px;
}

.page-hero {
    max-width: 1240px;
    margin: 0 auto;
    padding: 84px 22px 0;
}

.compact-hero .page-hero-content {
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 8px);
    padding: 46px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.56)),
        radial-gradient(circle at 88% 16%, rgba(52, 211, 153, 0.20), transparent 28%);
    box-shadow: var(--shadow);
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--soft);
}

.breadcrumb a {
    color: #a7f3d0;
}

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

.category-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(30, 41, 59, 0.52);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 211, 153, 0.50);
}

.category-posters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 154px;
    background: rgba(15, 23, 42, 0.82);
}

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

.category-card-body {
    padding: 22px;
}

.category-card-body h2 {
    margin: 0 0 10px;
}

.category-card-body p {
    min-height: 74px;
    margin: 0 0 18px;
    color: var(--soft);
    line-height: 1.7;
}

.category-card-body span {
    color: var(--accent);
    font-weight: 800;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(30, 41, 59, 0.66);
}

.pagination a {
    color: var(--accent);
    font-weight: 800;
}

.ranking-page {
    display: grid;
    gap: 16px;
}

.ranking-card a {
    display: grid;
    grid-template-columns: 54px 118px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(30, 41, 59, 0.52);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ranking-card a:hover {
    transform: translateY(-3px);
    border-color: rgba(52, 211, 153, 0.50);
}

.ranking-card strong {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #052e25;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.ranking-card img {
    width: 118px;
    height: 82px;
    border-radius: 14px;
    object-fit: cover;
}

.ranking-card h2 {
    margin: 0 0 8px;
    font-size: 20px;
}

.ranking-card p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.65;
}

.ranking-card span {
    color: var(--soft);
    font-size: 13px;
}

.search-page-section {
    padding-bottom: 50px;
}

.search-tools {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 170px 170px auto;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.66);
}

.search-result-info {
    margin: 22px 0;
    color: var(--muted);
}

.detail-wrap {
    padding-top: 34px;
}

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

.player-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.20);
    background: #000;
    box-shadow: var(--shadow);
}

.video-element {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.player-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--text);
    background: radial-gradient(circle, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.52));
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.player-button span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #052e25;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 20px 60px rgba(52, 211, 153, 0.34);
    font-size: 32px;
    text-indent: 5px;
}

.player-card.is-playing .player-button {
    opacity: 0;
    pointer-events: none;
}

.detail-card {
    margin-top: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(30, 41, 59, 0.54);
    overflow: hidden;
}

.detail-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 30px;
    padding: 30px;
}

.detail-poster img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
}

.detail-content h1 {
    font-size: clamp(34px, 5vw, 54px);
    letter-spacing: -0.05em;
}

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

.detail-one-line {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.8;
}

.prose-block {
    margin-top: 28px;
    color: var(--muted);
}

.prose-block h2 {
    margin: 28px 0 12px;
    color: var(--text);
    font-size: 25px;
}

.prose-block p {
    margin: 0;
    line-height: 1.95;
    font-size: 17px;
}

.detail-related {
    padding-left: 0;
    padding-right: 0;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.82);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 44px 22px;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 36px;
}

.footer-brand p,
.footer-column a {
    color: var(--soft);
    line-height: 1.75;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.footer-column a:hover {
    color: var(--accent);
}

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

@media (max-width: 1024px) {
    .movie-grid,
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .split-section,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .ranking-panel {
        position: static;
    }

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

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

@media (max-width: 760px) {
    .site-nav {
        padding: 0 16px;
    }

    .brand-name {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        display: none;
        padding: 16px 22px 22px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        background: rgba(15, 23, 42, 0.97);
        border-bottom: 1px solid var(--line);
    }

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

    .hero-carousel {
        height: 580px;
    }

    .hero-content {
        left: 22px;
        right: 22px;
        max-width: none;
    }

    .hero-arrow {
        display: none;
    }

    .search-panel-inner,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .search-form,
    .search-tools {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

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

    .movie-poster {
        height: 220px;
    }

    .ranking-card a {
        grid-template-columns: 44px 86px 1fr;
        gap: 12px;
    }

    .ranking-card img {
        width: 86px;
        height: 70px;
    }

    .compact-hero .page-hero-content {
        padding: 30px;
    }

    .detail-poster img {
        height: auto;
        max-height: 520px;
    }
}

@media (max-width: 520px) {
    .movie-grid,
    .category-grid,
    .mixed-grid {
        grid-template-columns: 1fr;
    }

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

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

    .ranking-card a {
        grid-template-columns: 42px 1fr;
    }

    .ranking-card img {
        display: none;
    }
}
