:root {
    --tea-50: #fff7ed;
    --tea-100: #ffedd5;
    --tea-400: #fb923c;
    --tea-500: #f97316;
    --tea-600: #d9703c;
    --tea-700: #b45833;
    --warm-50: #fbf7ef;
    --warm-100: #f3eadc;
    --warm-200: #e6d6c0;
    --warm-500: #8b735f;
    --warm-600: #6f5948;
    --warm-700: #4b3f35;
    --warm-900: #1f1a17;
    --cream-50: #fffaf1;
    --cream-100: #f7edda;
    --black-soft: #11100f;
    --shadow-soft: 0 18px 45px rgba(68, 45, 29, 0.12);
    --shadow-strong: 0 25px 80px rgba(38, 22, 13, 0.28);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--warm-900);
    background: linear-gradient(180deg, var(--cream-50), #ffffff 42%, var(--warm-50));
    font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
    min-width: 320px;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 250, 241, 0.88);
    border-bottom: 1px solid rgba(111, 89, 72, 0.12);
    backdrop-filter: blur(18px);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--tea-600), var(--warm-600));
    box-shadow: 0 12px 28px rgba(217, 112, 60, 0.35);
}

.logo-text {
    font-size: 20px;
    color: var(--warm-900);
}

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

.nav-link {
    color: var(--warm-700);
    font-weight: 650;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--tea-700);
}

.nav-link:hover {
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--warm-100);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--warm-700);
    border-radius: 99px;
}

.mobile-nav {
    display: none;
    padding: 0 22px 18px;
    background: rgba(255, 250, 241, 0.98);
}

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--warm-700);
    background: rgba(255, 255, 255, 0.65);
}

.mobile-link.is-active {
    color: var(--tea-700);
    background: var(--tea-50);
}

.hero-carousel {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background: var(--black-soft);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.65s ease, transform 0.65s ease;
    pointer-events: none;
}

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

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-vignette,
.detail-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 45%, rgba(217, 112, 60, 0.24), transparent 32%),
        linear-gradient(90deg, rgba(17, 16, 15, 0.92), rgba(17, 16, 15, 0.62) 47%, rgba(17, 16, 15, 0.18)),
        linear-gradient(180deg, rgba(17, 16, 15, 0.24), rgba(17, 16, 15, 0.84));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    min-height: 690px;
    margin: 0 auto;
    padding: 90px 22px 150px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 430px);
    align-items: center;
    gap: 56px;
}

.hero-text-panel {
    max-width: 690px;
    color: #ffffff;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--tea-600);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-text-panel .section-eyebrow,
.detail-copy .section-eyebrow,
.page-hero .section-eyebrow {
    color: #ffbd80;
}

.hero-text-panel h1,
.page-hero h1,
.detail-copy h1 {
    margin: 14px 0 18px;
    font-family: Georgia, "Songti SC", serif;
    font-size: clamp(42px, 6.2vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.hero-text-panel p,
.page-hero p,
.detail-copy p {
    max-width: 680px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

.hero-tags,
.detail-tags,
.side-tags,
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.hero-tags span,
.detail-tags a,
.side-tags a,
.card-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--warm-700);
    background: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 700;
}

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

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

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--tea-600), var(--tea-700));
    box-shadow: 0 15px 35px rgba(217, 112, 60, 0.34);
}

.btn-ghost {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
    color: var(--tea-700);
    border: 1px solid rgba(180, 88, 51, 0.28);
    background: #ffffff;
}

.hero-poster {
    display: block;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(12px);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 24px;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 95px;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-arrow,
.hero-dot,
.hero-thumb,
.play-overlay {
    cursor: pointer;
}

.hero-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 32px;
}

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

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

.hero-dot.is-active {
    width: 28px;
    background: var(--tea-400);
}

.hero-thumbs {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 4;
    width: min(1180px, calc(100% - 44px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.hero-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-thumb.is-active {
    border-color: rgba(251, 146, 60, 0.72);
    background: rgba(217, 112, 60, 0.28);
}

.hero-thumb img {
    width: 58px;
    height: 42px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-thumb span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
}

.quick-search-section {
    max-width: 930px;
    margin: -42px auto 0;
    padding: 0 22px;
    position: relative;
    z-index: 8;
}

.quick-search {
    padding: 24px;
    border: 1px solid rgba(111, 89, 72, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.quick-search label {
    display: block;
    margin-bottom: 12px;
    color: var(--warm-700);
    font-weight: 800;
}

.quick-search div,
.filter-bar {
    display: flex;
    gap: 12px;
}

.quick-search input,
.filter-bar input,
.filter-bar select {
    min-height: 48px;
    border: 1px solid rgba(111, 89, 72, 0.16);
    border-radius: 16px;
    padding: 0 16px;
    color: var(--warm-900);
    background: #ffffff;
    outline: none;
}

.quick-search input,
.filter-bar input {
    flex: 1;
}

.quick-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(217, 112, 60, 0.64);
    box-shadow: 0 0 0 4px rgba(217, 112, 60, 0.12);
}

.quick-search button {
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    background: var(--tea-600);
    font-weight: 800;
    cursor: pointer;
}

.section-block {
    max-width: 1240px;
    margin: 0 auto;
    padding: 76px 22px 0;
}

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

.section-heading h2,
.footer-column h2,
.side-card h2,
.content-card h2 {
    margin: 0;
    color: var(--warm-900);
    font-family: Georgia, "Songti SC", serif;
}

.section-heading h2 {
    font-size: clamp(28px, 3vw, 42px);
}

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

.vertical-heading {
    display: block;
}

.vertical-heading p {
    color: var(--warm-600);
    line-height: 1.8;
}

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

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

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

.movie-card {
    display: grid;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(68, 45, 29, 0.18);
}

.cover-wrap {
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--warm-100);
}

.cover-wrap img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .cover-wrap img {
    transform: scale(1.06);
}

.cover-shade {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
    transition: opacity 0.25s ease;
}

.movie-card:hover .cover-shade {
    opacity: 1;
}

.play-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(217, 112, 60, 0.92);
    font-size: 12px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-badge {
    opacity: 1;
    transform: translateY(0);
}

.card-body {
    display: grid;
    gap: 8px;
    padding: 16px;
}

.card-body strong {
    overflow: hidden;
    color: var(--warm-900);
    font-size: 17px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-desc {
    min-height: 42px;
    color: var(--warm-600);
    font-size: 13px;
    line-height: 1.6;
}

.card-meta {
    color: var(--warm-500);
    font-size: 12px;
    font-weight: 700;
}

.card-tags span {
    color: var(--tea-700);
    background: var(--tea-50);
}

.split-section {
    display: grid;
    grid-template-columns: 0.86fr 1.4fr;
    gap: 34px;
    align-items: start;
}

.split-section.reverse {
    grid-template-columns: 1.4fr 0.86fr;
}

.split-section.reverse .vertical-heading {
    order: 2;
}

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

.rank-list-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rank-item {
    display: grid;
    grid-template-columns: 42px 92px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(111, 89, 72, 0.12);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(68, 45, 29, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 112, 60, 0.34);
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--tea-600), var(--warm-600));
    font-weight: 900;
}

.rank-item img {
    width: 92px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
}

.rank-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.rank-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-copy em,
.rank-copy span {
    color: var(--warm-600);
    font-size: 13px;
    font-style: normal;
}

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

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    background: var(--warm-100);
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-tile:hover img {
    transform: scale(1.07);
}

.tile-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 16, 15, 0.05), rgba(17, 16, 15, 0.82));
}

.tile-copy {
    position: absolute;
    inset: auto 18px 18px;
    display: grid;
    gap: 6px;
    color: #ffffff;
}

.tile-copy strong {
    font-size: 22px;
    font-family: Georgia, "Songti SC", serif;
}

.tile-copy em,
.tile-copy b {
    font-style: normal;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.86);
}

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

.compact-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.compact-card img {
    width: 96px;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
}

.compact-card span {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.compact-card strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-card em {
    color: var(--warm-600);
    font-size: 13px;
    font-style: normal;
}

.page-hero {
    min-height: 360px;
    padding: 92px 22px;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 78% 30%, rgba(217, 112, 60, 0.45), transparent 30%),
        linear-gradient(135deg, rgba(31, 26, 23, 0.97), rgba(75, 63, 53, 0.9));
    color: #ffffff;
}

.page-hero > div {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

.small-hero {
    min-height: 300px;
}

.filter-bar {
    position: sticky;
    top: 76px;
    z-index: 5;
    margin-bottom: 24px;
    padding: 14px;
    border: 1px solid rgba(111, 89, 72, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 35px rgba(68, 45, 29, 0.1);
    backdrop-filter: blur(14px);
}

.detail-hero {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: var(--black-soft);
}

.detail-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 92px 22px 72px;
    color: #ffffff;
}

.breadcrumb-link,
.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.breadcrumb-link:hover {
    color: #ffbd80;
}

.detail-top {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 20px;
}

.detail-tags a {
    color: var(--warm-900);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 360px;
    gap: 28px;
    align-items: start;
}

.detail-main,
.detail-side {
    display: grid;
    gap: 22px;
}

.player-card,
.content-card,
.side-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.player-card {
    position: relative;
    background: #000000;
}

.player-card video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.64));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-overlay span {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--tea-600), var(--tea-700));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
    font-size: 30px;
}

.content-card,
.side-card {
    padding: 24px;
}

.content-card p {
    color: var(--warm-700);
    line-height: 1.9;
    font-size: 16px;
}

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

.info-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(111, 89, 72, 0.12);
}

.info-list span {
    color: var(--warm-500);
}

.info-list strong {
    text-align: right;
    color: var(--warm-900);
}

.side-tags a {
    color: var(--tea-700);
    background: var(--tea-50);
}

.site-footer {
    margin-top: 86px;
    color: var(--warm-200);
    background: var(--warm-900);
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 56px 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 0.7fr 0.7fr;
    gap: 32px;
}

.footer-logo .logo-text,
.footer-column h2 {
    color: #ffffff;
}

.footer-brand p {
    max-width: 540px;
    line-height: 1.8;
}

.footer-column ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-column a {
    color: var(--warm-200);
}

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

.footer-bottom {
    padding: 18px 22px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
}

[data-card].is-filtered {
    display: none;
}

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

    .category-grid,
    .compact-grid,
    .rank-list-wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-content,
    .detail-top,
    .detail-layout,
    .split-section,
    .split-section.reverse {
        grid-template-columns: 1fr;
    }

    .split-section.reverse .vertical-heading {
        order: 0;
    }

    .detail-poster {
        max-width: 420px;
    }
}

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

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

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

    .hero-content {
        padding-top: 70px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-poster {
        max-width: 330px;
    }

    .hero-thumbs {
        overflow-x: auto;
        grid-template-columns: repeat(5, 220px);
        justify-content: start;
    }

    .movie-grid,
    .catalog-grid,
    .related-grid,
    .latest-grid,
    .category-grid,
    .category-grid-large,
    .compact-grid,
    .rank-list-wide {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .filter-bar,
    .quick-search div {
        flex-direction: column;
    }

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

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

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

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

@media (max-width: 520px) {
    .movie-grid,
    .catalog-grid,
    .related-grid,
    .latest-grid,
    .category-grid,
    .category-grid-large,
    .compact-grid {
        grid-template-columns: 1fr;
    }

    .hero-controls {
        bottom: 112px;
    }

    .card-desc {
        min-height: auto;
    }
}
