:root {
    --blue-900: #1e3a8a;
    --blue-800: #1e40af;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    --gray-950: #0f172a;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 18px 45px rgba(15, 23, 42, 0.14);
    --radius: 16px;
}

* {
    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-900);
    background: var(--gray-50);
    line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-600);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand__icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    font-size: 14px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--gray-700);
    font-weight: 650;
}

.nav-menu a {
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--blue-600);
}

.nav-search {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search input {
    width: 260px;
    height: 40px;
    padding: 0 44px 0 18px;
    border: 1px solid var(--gray-300);
    border-radius: 999px;
    outline: none;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.nav-search button {
    position: absolute;
    right: 9px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--gray-500);
    cursor: pointer;
}

.nav-search button:hover {
    color: var(--blue-600);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--gray-700);
    font-size: 28px;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(105deg, var(--blue-900), var(--blue-700));
}

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

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

.hero-slide__image {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2), transparent 34%), linear-gradient(105deg, var(--blue-900), var(--blue-700));
}

.hero-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.32;
    transform: scale(1.04);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.72), rgba(30, 64, 175, 0.34), rgba(15, 23, 42, 0.12));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 690px;
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.95);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.hero h1,
.hero h2 {
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero p {
    margin: 0 0 26px;
    color: rgba(239, 246, 255, 0.92);
    font-size: clamp(17px, 2.1vw, 20px);
    max-width: 640px;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    color: var(--blue-700);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);
}

.btn--primary:hover {
    background: var(--blue-50);
}

.btn--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.btn--blue {
    color: var(--white);
    background: var(--blue-600);
}

.btn--blue:hover {
    background: var(--blue-700);
}

.hero-control {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: rgba(15, 23, 42, 0.36);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.hero-control:hover {
    background: rgba(15, 23, 42, 0.58);
}

.hero-control--prev {
    left: 24px;
}

.hero-control--next {
    right: 24px;
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
}

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

.section {
    padding: 56px 0;
}

.section--tight {
    padding-top: 36px;
}

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

.section-title {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.section-desc {
    margin: 8px 0 0;
    color: var(--gray-600);
}

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

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

.movie-card {
    min-width: 0;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.poster-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-100), var(--gray-200));
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.25s ease;
}

.movie-card:hover .poster-wrap::after {
    background: rgba(0, 0, 0, 0.28);
}

.duration-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    padding: 3px 8px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.72);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.play-hover {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.82);
    border-radius: 999px;
    color: var(--blue-600);
    background: rgba(255, 255, 255, 0.92);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-card__body {
    padding: 16px;
}

.card-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.badge--blue {
    color: var(--blue-700);
    background: var(--blue-100);
}

.badge--light {
    color: var(--gray-700);
    background: var(--gray-100);
}

.movie-card h3 {
    margin: 0 0 8px;
    color: var(--gray-900);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.movie-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--gray-500);
    font-size: 13px;
}

.movie-card--compact .movie-card__body {
    padding: 12px;
}

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

.rank-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
    gap: 28px;
    align-items: start;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 42px 72px 1fr 54px;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.rank-number {
    color: var(--blue-600);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

.rank-item img {
    width: 72px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    background: var(--blue-100);
}

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

.rank-score {
    color: var(--blue-700);
    font-weight: 900;
}

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

.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

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

.category-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 190px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.72));
}

.category-card h2,
.category-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.category-card p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.86);
}

.category-count {
    display: inline-flex;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 13px;
    font-weight: 800;
}

.cta-band {
    margin-top: 46px;
    padding: 36px;
    border-radius: 24px;
    color: var(--white);
    text-align: center;
    background: linear-gradient(105deg, var(--blue-600), var(--blue-800));
    box-shadow: var(--shadow-lg);
}

.cta-band h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 4vw, 36px);
}

.cta-band p {
    margin: 0 auto 22px;
    max-width: 760px;
    color: rgba(239, 246, 255, 0.9);
}

.page-hero {
    padding: 46px 0;
    color: var(--white);
    background: linear-gradient(105deg, var(--blue-900), var(--blue-700));
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    color: rgba(239, 246, 255, 0.88);
    font-size: 18px;
}

.breadcrumb {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.breadcrumb a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.filter-panel {
    width: min(1180px, calc(100% - 32px));
    margin: -24px auto 28px;
    padding: 20px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

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

.filter-grid label {
    display: grid;
    gap: 6px;
    color: var(--gray-700);
    font-weight: 800;
    font-size: 13px;
}

.filter-grid input,
.filter-grid select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    color: var(--gray-900);
    background: var(--white);
    outline: none;
}

.filter-grid input:focus,
.filter-grid select:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
}

.filter-status {
    margin-top: 12px;
    color: var(--gray-600);
    font-size: 14px;
}

.empty-state {
    display: none;
    padding: 32px;
    border-radius: 18px;
    background: var(--white);
    color: var(--gray-600);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

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

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

.detail-main,
.detail-side,
.info-card {
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.player-box {
    position: relative;
    overflow: hidden;
    background: #020617;
    aspect-ratio: 16 / 9;
}

.player-box video {
    width: 100%;
    height: 100%;
    background: #020617;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--white);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.76));
    cursor: pointer;
}

.player-start.is-hidden {
    display: none;
}

.player-start__inner {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.player-start__icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--blue-700);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
    font-size: 28px;
}

.player-status {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    z-index: 4;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-align: center;
}

.detail-content {
    padding: 26px;
}

.detail-content h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.16;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 22px;
}

.meta-pill {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-size: 13px;
    font-weight: 800;
}

.detail-section {
    margin-top: 24px;
}

.detail-section h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.detail-section p {
    margin: 0;
    color: var(--gray-700);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-list span {
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--blue-700);
    background: var(--blue-50);
    font-size: 13px;
    font-weight: 700;
}

.side-title {
    margin: 0;
    padding: 18px 18px 0;
    font-size: 20px;
}

.side-list {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.side-card {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 12px;
    align-items: center;
}

.side-card img {
    width: 104px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    background: var(--blue-100);
}

.side-card h3 {
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.35;
}

.side-card p {
    margin: 0;
    color: var(--gray-500);
    font-size: 13px;
}

.info-card {
    padding: 18px;
    margin-bottom: 18px;
}

.info-card h2 {
    margin: 0 0 12px;
    font-size: 20px;
}

.info-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.info-card div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 8px;
}

.info-card dt {
    color: var(--gray-500);
}

.info-card dd {
    margin: 0;
    color: var(--gray-900);
    font-weight: 800;
    text-align: right;
}

.search-shell {
    width: min(860px, calc(100% - 32px));
    margin: -24px auto 34px;
    padding: 20px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.search-large {
    display: flex;
    gap: 12px;
}

.search-large input {
    flex: 1;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid var(--gray-300);
    border-radius: 14px;
    outline: none;
}

.search-large input:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
}

.search-results-note {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 18px;
    color: var(--gray-600);
}

.site-footer {
    margin-top: 40px;
    padding: 38px 0 24px;
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 26px;
    align-items: start;
}

.footer-brand {
    color: var(--white);
}

.footer-inner p {
    margin: 12px 0 0;
    max-width: 520px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
}

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

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.back-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    width: 44px;
    height: 44px;
    display: none;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--blue-600);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.back-top.is-visible {
    display: block;
}

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

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

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

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

    .nav-shell {
        height: 64px;
    }

    .nav-menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow-lg);
    }

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

    .nav-search input {
        width: 100%;
    }

    .hero,
    .hero-content {
        min-height: 540px;
    }

    .hero-control {
        display: none;
    }

    .section-head {
        display: block;
    }

    .section-actions {
        margin-top: 14px;
    }

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

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

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

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .brand__text {
        max-width: 8em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .movie-grid,
    .movie-grid--dense,
    .category-cards {
        grid-template-columns: 1fr;
    }

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

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

    .rank-item {
        grid-template-columns: 34px 68px 1fr;
    }

    .rank-score {
        display: none;
    }

    .side-card {
        grid-template-columns: 96px 1fr;
    }

    .detail-content {
        padding: 20px;
    }
}
