:root {
    --dark-950: #050505;
    --dark-900: #0a0a0a;
    --dark-850: #111111;
    --dark-800: #171717;
    --dark-750: #202020;
    --dark-700: #262626;
    --dark-600: #3f3f46;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --accent-red: #dc2626;
    --accent-crimson: #b91c1c;
    --accent-soft: rgba(220, 38, 38, 0.14);
    --border-soft: rgba(255, 255, 255, 0.08);
    --shadow-red: 0 18px 45px rgba(220, 38, 38, 0.25);
    --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.35);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--neutral-100);
    background: var(--dark-900);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(10, 10, 10, 0.88);
    border-bottom: 1px solid var(--border-soft);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand:hover,
.footer-brand:hover {
    color: #fff;
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), #7f1d1d);
    box-shadow: var(--shadow-red);
    color: white;
    font-size: 13px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link,
.mobile-link {
    color: var(--neutral-300);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: var(--accent-red);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--dark-800);
    color: white;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    margin: 5px auto;
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    padding: 14px 24px 18px;
    border-top: 1px solid var(--border-soft);
    background: rgba(10, 10, 10, 0.96);
}

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

.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    background: var(--dark-950);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.72) 38%, rgba(10, 10, 10, 0.25) 70%, rgba(10, 10, 10, 0.84) 100%),
        linear-gradient(0deg, var(--dark-900) 0%, rgba(10, 10, 10, 0.2) 44%, rgba(10, 10, 10, 0.72) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 72px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-red);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
    margin: 0;
    color: white;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hero-copy h1 {
    font-size: clamp(42px, 7vw, 72px);
    max-width: 860px;
}

.hero-copy p {
    max-width: 640px;
    margin: 20px 0 0;
    color: var(--neutral-300);
    font-size: 18px;
    line-height: 1.75;
}

.hero-meta,
.detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    color: var(--neutral-300);
}

.hero-meta span,
.detail-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-soft);
}

.hero-tags,
.tag-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 18px;
}

.hero-tags span,
.tag-row span {
    color: var(--neutral-300);
    background: var(--dark-700);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
    background: var(--accent-red);
    color: white;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--accent-crimson);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: white;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.11);
}

.hero-controls {
    position: absolute;
    right: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
}

.hero-controls button {
    border: 0;
    cursor: pointer;
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    font-size: 26px;
    line-height: 1;
}

.hero-controls > button:hover {
    background: var(--accent-red);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 28px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
}

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

.search-strip {
    background: linear-gradient(180deg, var(--dark-900), var(--dark-850));
    border-bottom: 1px solid var(--border-soft);
}

.search-strip-inner {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    align-items: center;
    gap: 30px;
    padding: 28px 0;
}

.search-strip h2 {
    margin: 0 0 8px;
    color: white;
    font-size: 24px;
}

.search-strip p {
    margin: 0;
    color: var(--neutral-400);
    line-height: 1.7;
}

.global-search,
.local-filter {
    display: flex;
    gap: 10px;
}

.global-search input,
.local-filter input,
.local-filter select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background: var(--dark-800);
    color: white;
    padding: 0 14px;
    outline: none;
}

.global-search input:focus,
.local-filter input:focus,
.local-filter select:focus {
    border-color: rgba(220, 38, 38, 0.65);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.global-search button,
.local-filter button {
    min-height: 46px;
    border: 0;
    border-radius: 12px;
    background: var(--accent-red);
    color: white;
    padding: 0 18px;
    font-weight: 800;
    cursor: pointer;
}

.local-filter button {
    background: var(--dark-700);
}

.content-section {
    padding: 64px 0;
}

.latest-section {
    background: linear-gradient(180deg, var(--dark-900), var(--dark-800));
}

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

.section-heading span {
    display: inline-block;
    color: var(--accent-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.section-heading h2 {
    margin: 0;
    color: white;
    font-size: clamp(26px, 3vw, 34px);
    letter-spacing: -0.03em;
}

.section-more {
    color: var(--neutral-300);
    font-weight: 700;
}

.section-more:hover {
    color: var(--accent-red);
}

.grid {
    display: grid;
}

.cards-grid {
    gap: 22px;
}

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

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

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

.card-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scrollbar-width: thin;
}

.rail-item {
    flex: 0 0 280px;
}

.movie-card {
    min-width: 0;
}

.card-link {
    display: block;
    height: 100%;
    background: var(--dark-800);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-link:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.45);
    box-shadow: var(--shadow-red);
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: var(--dark-700);
}

.movie-card-large .poster-wrap {
    aspect-ratio: 16 / 9;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.card-link:hover .poster-shade {
    opacity: 1;
}

.play-bubble {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-red);
    color: white;
    transform: scale(0.6);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-red);
}

.card-link:hover .play-bubble {
    transform: scale(1);
}

.score-badge,
.duration-badge {
    position: absolute;
    right: 10px;
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.84);
    color: white;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.score-badge {
    top: 10px;
}

.duration-badge {
    bottom: 10px;
    color: var(--neutral-300);
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0 0 8px;
    color: white;
    font-size: 16px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.card-link:hover .card-body h3 {
    color: var(--accent-red);
}

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

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--neutral-500);
    font-size: 12px;
}

.card-meta span:last-child {
    white-space: nowrap;
}

.page-main {
    min-height: 70vh;
}

.page-hero {
    position: relative;
    padding: 92px 0 54px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 15%, rgba(220, 38, 38, 0.22), transparent 34%),
        linear-gradient(135deg, var(--dark-900), var(--dark-800));
    border-bottom: 1px solid var(--border-soft);
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 58px);
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--neutral-300);
    line-height: 1.8;
    font-size: 17px;
}

.category-hero,
.search-hero,
.ranking-hero {
    padding-bottom: 64px;
}

.local-filter {
    margin-top: 28px;
    max-width: 920px;
}

.wide-filter input {
    flex: 1.4;
}

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

.category-card {
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, var(--dark-800), var(--dark-850));
    box-shadow: var(--shadow-card);
}

.category-main-link {
    display: block;
    padding: 28px;
}

.category-main-link span {
    color: var(--accent-red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.category-main-link h2 {
    margin: 12px 0;
    color: white;
    font-size: 30px;
}

.category-main-link p {
    margin: 0 0 18px;
    color: var(--neutral-400);
    line-height: 1.8;
}

.category-main-link strong {
    color: white;
}

.category-samples {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--border-soft);
}

.compact-card {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: var(--dark-800);
    min-width: 0;
}

.compact-card:hover {
    background: var(--dark-700);
}

.compact-card img {
    width: 58px;
    height: 82px;
    border-radius: 8px;
    object-fit: cover;
}

.compact-card span {
    color: white;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-card em {
    color: #fbbf24;
    font-style: normal;
    font-size: 13px;
    white-space: nowrap;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 46px 62px 1fr auto;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: var(--dark-800);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-item:hover {
    transform: translateX(4px);
    background: var(--dark-700);
}

.rank-num {
    color: var(--accent-red);
    font-size: 20px;
    font-weight: 900;
}

.rank-item img {
    width: 62px;
    height: 88px;
    border-radius: 8px;
    object-fit: cover;
}

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

.rank-score {
    color: #fbbf24;
    font-weight: 800;
    white-space: nowrap;
}

.feature-panel,
.related-panel {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(220, 38, 38, 0.15), var(--dark-800) 38%);
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.sticky-panel,
.related-panel {
    position: sticky;
    top: 88px;
}

.feature-panel h2,
.related-panel h2 {
    margin: 0 0 12px;
    color: white;
    font-size: 26px;
}

.feature-panel p {
    margin: 0 0 20px;
    color: var(--neutral-300);
    line-height: 1.8;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pills a {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--dark-700);
    color: var(--neutral-200);
    font-size: 13px;
    font-weight: 700;
}

.category-pills a:hover {
    background: var(--accent-red);
    color: white;
}

.detail-hero {
    position: relative;
    padding: 36px 0 0;
    overflow: hidden;
}

.detail-bg {
    position: absolute;
    inset: 0 0 auto;
    height: 540px;
    opacity: 0.25;
    pointer-events: none;
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px);
    transform: scale(1.06);
}

.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.58), var(--dark-900));
}

.detail-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--neutral-400);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--accent-red);
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: black;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.video-el {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: black;
    cursor: pointer;
}

.video-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.52));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-start span {
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-red);
    color: white;
    font-size: 30px;
    box-shadow: var(--shadow-red);
}

.video-frame.is-playing .video-start {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-loading,
.video-error {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: none;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(10, 10, 10, 0.76);
    color: white;
    font-size: 13px;
}

.video-frame.is-loading .video-loading,
.video-error.is-visible {
    display: block;
}

.detail-info {
    margin-top: 28px;
}

.detail-info h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 18px;
}

.detail-info h2 {
    margin: 0 0 16px;
    color: white;
    font-size: 24px;
    line-height: 1.45;
}

.detail-info p {
    color: var(--neutral-300);
    line-height: 1.9;
    font-size: 16px;
}

.review-box,
.detail-box {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background: var(--dark-800);
}

.detail-box dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 22px;
}

.detail-box div {
    min-width: 0;
}

.detail-box dt {
    color: var(--neutral-500);
    font-size: 13px;
    margin-bottom: 6px;
}

.detail-box dd {
    margin: 0;
    color: white;
    line-height: 1.55;
}

.detail-box a {
    color: var(--accent-red);
}

.detail-tags span {
    background: var(--dark-700);
}

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

.site-footer {
    margin-top: 20px;
    border-top: 1px solid var(--border-soft);
    background: var(--dark-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    padding: 44px 0;
}

.site-footer p {
    max-width: 460px;
    color: var(--neutral-400);
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: white;
    font-size: 16px;
}

.site-footer a:not(.footer-brand) {
    display: block;
    color: var(--neutral-400);
    margin: 9px 0;
    font-size: 14px;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0 28px;
    border-top: 1px solid var(--border-soft);
    color: var(--neutral-500);
    font-size: 14px;
}

.movie-card.is-hidden {
    display: none;
}

.no-results {
    grid-column: 1 / -1;
    padding: 32px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background: var(--dark-800);
    color: var(--neutral-300);
    text-align: center;
}

@media (max-width: 1100px) {
    .six-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

    .related-panel,
    .sticky-panel {
        position: static;
    }
}

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

    .mobile-menu-button {
        display: block;
    }

    .hero-carousel {
        height: auto;
        min-height: 640px;
    }

    .hero-content {
        align-items: flex-end;
        padding-top: 130px;
        padding-bottom: 112px;
    }

    .hero-controls {
        left: 24px;
        right: auto;
    }

    .search-strip-inner,
    .footer-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .global-search,
    .local-filter {
        flex-direction: column;
    }

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

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .brand span:last-child,
    .footer-brand span:last-child {
        font-size: 18px;
    }

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-copy p {
        font-size: 15px;
    }

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

    .btn {
        width: 100%;
    }

    .content-section {
        padding: 46px 0;
    }

    .cards-grid {
        gap: 14px;
    }

    .card-body {
        padding: 12px;
    }

    .card-body h3 {
        font-size: 14px;
    }

    .card-body p,
    .card-meta,
    .tag-row {
        font-size: 12px;
    }

    .rank-item {
        grid-template-columns: 36px 52px 1fr;
    }

    .rank-score {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
