:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-100: #fef3c7;
    --white: #ffffff;
    --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.16);
    --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.12);
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--slate-800);
    background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
}

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: 50;
    color: var(--white);
    background: linear-gradient(90deg, var(--slate-950), var(--slate-900) 45%, #1f2937);
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.28);
}

.nav-wrap {
    width: min(100% - 32px, var(--container));
    height: 74px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
    font-size: 16px;
    padding-left: 2px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.02em;
}

.brand-text small {
    margin-top: 4px;
    color: #cbd5e1;
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a,
.mobile-links a {
    border-radius: 999px;
    padding: 9px 15px;
    color: #e2e8f0;
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-links a:hover,
.mobile-links a.active {
    color: var(--amber-400);
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    border-radius: 99px;
}

.mobile-links {
    display: none;
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 0 0 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-links.is-open {
    display: grid;
    gap: 6px;
}

.hero {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(90deg, var(--slate-950), var(--slate-800), #78350f);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.93), rgba(15, 23, 42, 0.72), rgba(120, 53, 15, 0.50)), var(--hero-bg);
    background-size: cover;
    background-position: center;
    transition: opacity 0.7s ease, transform 1.4s ease;
}

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

.hero-glow {
    position: absolute;
    inset: auto -12% -45% auto;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.34), transparent 64%);
    filter: blur(8px);
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 14px;
    color: var(--amber-100);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 14px;
}

.hero h1 {
    margin: 0 0 20px;
    font-size: clamp(38px, 6vw, 70px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero h1 span {
    display: block;
    margin-top: 10px;
    color: var(--amber-400);
    font-size: clamp(22px, 3vw, 34px);
    letter-spacing: 0;
}

.hero p {
    max-width: 720px;
    margin: 0 0 30px;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: var(--slate-950);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: 0 16px 35px rgba(245, 158, 11, 0.3);
}

.btn-ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

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

.hero-search {
    display: flex;
    max-width: 620px;
    padding: 8px;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

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

.hero-search input::placeholder {
    color: #cbd5e1;
}

.hero-search button {
    border: 0;
    border-radius: 12px;
    padding: 11px 18px;
    color: var(--slate-950);
    background: var(--amber-400);
    cursor: pointer;
    font-weight: 800;
}

.hero-panel {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.46);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.hero-poster {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 22px;
    background: var(--slate-900);
}

.hero-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 55%);
}

.hero-panel h2 {
    margin: 18px 0 8px;
    font-size: 24px;
}

.hero-panel p {
    margin: 0 0 14px;
    color: #dbeafe;
    font-size: 14px;
    line-height: 1.65;
}

.hero-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.hero-dot {
    height: 62px;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    background: var(--slate-800);
    cursor: pointer;
    opacity: 0.58;
    outline: 2px solid transparent;
    transition: opacity 0.2s ease, outline 0.2s ease, transform 0.2s ease;
}

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

.hero-dot.is-active {
    opacity: 1;
    outline-color: var(--amber-400);
    transform: translateY(-2px);
}

.section {
    padding: 64px 0;
}

.section.alt {
    background: linear-gradient(90deg, #eff6ff, #ecfeff);
}

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

.section-title {
    margin: 0;
    color: var(--slate-800);
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
}

.section-subtitle {
    margin: 8px 0 0;
    color: var(--slate-500);
    line-height: 1.7;
}

.more-link {
    color: var(--amber-600);
    font-weight: 800;
    white-space: nowrap;
}

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

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

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

.movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.2);
}

.poster-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
}

.movie-grid.featured .poster-wrap {
    aspect-ratio: 16 / 10;
}

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

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

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.76), rgba(2, 6, 23, 0.05) 60%);
    opacity: 0.72;
    transition: opacity 0.2s ease;
}

.movie-card:hover .poster-wrap::after {
    opacity: 0.48;
}

.year-pill,
.play-float {
    position: absolute;
    z-index: 2;
}

.year-pill {
    top: 10px;
    right: 10px;
    padding: 5px 9px;
    color: var(--white);
    background: rgba(245, 158, 11, 0.92);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.play-float {
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    padding-left: 3px;
    color: var(--white);
    background: rgba(245, 158, 11, 0.92);
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(0.84);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

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

.movie-body {
    padding: 16px;
}

.movie-body.compact {
    padding: 13px;
}

.movie-body h3 {
    min-height: 44px;
    margin: 0 0 9px;
    color: var(--slate-800);
    font-size: 16px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.card-meta {
    color: var(--slate-500);
    font-size: 12px;
    margin-bottom: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    color: #92400e;
    background: #fffbeb;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

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

.category-card {
    position: relative;
    min-height: 184px;
    overflow: hidden;
    padding: 22px;
    color: var(--white);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--slate-900), #78350f);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
}

.category-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.18);
}

.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    font-size: 22px;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    color: #cbd5e1;
    line-height: 1.65;
}

.category-card span {
    position: relative;
    z-index: 1;
    color: var(--amber-400);
    font-weight: 800;
}

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

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

.rank-item {
    display: grid;
    grid-template-columns: 48px 68px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.rank-no {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--slate-950);
    background: var(--amber-400);
    border-radius: 12px;
    font-weight: 900;
}

.rank-item img {
    width: 68px;
    height: 86px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--slate-900);
}

.rank-info {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.rank-info strong {
    color: var(--slate-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-info em {
    color: var(--slate-500);
    font-size: 13px;
    font-style: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rank-score {
    color: var(--amber-600);
    font-size: 20px;
    font-weight: 900;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(90deg, var(--slate-950), var(--slate-800), #78350f);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 10%, rgba(245, 158, 11, 0.32), transparent 36%), radial-gradient(circle at 10% 90%, rgba(59, 130, 246, 0.22), transparent 38%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding: 72px 0;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.12;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.8;
}

.filter-bar,
.search-panel {
    display: grid;
    gap: 14px;
    margin-bottom: 26px;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.filter-bar input,
.search-panel input,
.search-panel select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    padding: 0 14px;
    outline: 0;
    color: var(--slate-800);
    background: var(--slate-50);
}

.search-panel {
    grid-template-columns: 1.4fr 0.8fr 0.8fr auto;
    align-items: center;
}

.search-panel button {
    min-height: 46px;
    border: 0;
    border-radius: 14px;
    padding: 0 22px;
    color: var(--slate-950);
    background: var(--amber-400);
    cursor: pointer;
    font-weight: 900;
}

.empty-state {
    padding: 58px 22px;
    color: var(--slate-500);
    text-align: center;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.player-shell {
    background: #000000;
    padding: 22px 0 32px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 16px;
    color: #cbd5e1;
    font-weight: 700;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--amber-400);
}

.player-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    background: #000000;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.42);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    cursor: pointer;
    background-image: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.40)), var(--poster-bg);
    background-size: cover;
    background-position: center;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-button {
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    color: var(--white);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.38);
    cursor: pointer;
    font-size: 34px;
}

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

.detail-card,
.side-card {
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.detail-card {
    padding: 28px;
}

.detail-card h1 {
    margin: 0 0 16px;
    color: var(--slate-800);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.18;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--slate-200);
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--slate-700);
    background: var(--slate-100);
    font-size: 14px;
    font-weight: 700;
}

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

.detail-section h2 {
    margin: 0 0 12px;
    color: var(--slate-800);
    font-size: 22px;
}

.detail-section p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.9;
}

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

.side-card {
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 96px;
}

.side-card h2 {
    margin: 0 0 18px;
    color: var(--slate-800);
    font-size: 20px;
}

.recommend-list {
    display: grid;
    gap: 14px;
}

.recommend-item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 14px;
    transition: background 0.2s ease;
}

.recommend-item:hover {
    background: var(--slate-50);
}

.recommend-item img {
    width: 104px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--slate-900);
}

.recommend-item strong {
    display: block;
    color: var(--slate-800);
    font-size: 14px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommend-item span {
    display: block;
    margin-top: 6px;
    color: var(--slate-500);
    font-size: 12px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--slate-500);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--amber-600);
    font-weight: 700;
}

.site-footer {
    margin-top: 72px;
    color: #cbd5e1;
    background: linear-gradient(180deg, var(--slate-900), #000000);
}

.footer-grid {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 36px;
    padding: 48px 0 28px;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
}

.site-footer p {
    margin: 0;
    line-height: 1.8;
}

.footer-links {
    display: grid;
    gap: 9px;
}

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

.footer-bottom {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 14px;
}

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

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

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 54px 0;
    }

    .hero-panel {
        max-width: 620px;
    }

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

    .side-card {
        position: static;
    }
}

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

    .nav-toggle {
        display: block;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .brand-text small {
        display: none;
    }

    .hero,
    .hero-inner {
        min-height: auto;
    }

    .hero-inner {
        gap: 26px;
    }

    .hero-search,
    .section-head {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .category-grid,
    .rank-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 38px 58px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .rank-item img {
        width: 58px;
        height: 74px;
    }

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

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

    .movie-body {
        padding: 12px;
    }

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

    .movie-body p,
    .tag-row {
        display: none;
    }

    .hero-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-dot {
        height: 72px;
    }

    .recommend-item {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .recommend-item img {
        width: 88px;
        height: 62px;
    }
}
