:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --orange: #f97316;
    --red: #ef4444;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fdf2f8;
    --card: #ffffff;
    --line: rgba(148, 163, 184, 0.28);
    --shadow: 0 18px 45px rgba(79, 70, 229, 0.16);
    --radius-xl: 28px;
    --radius-lg: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #fdf2f8 0%, #f5f3ff 48%, #eff6ff 100%);
    min-height: 100vh;
}

body.is-locked {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.28);
}

.site-nav {
    max-width: 1280px;
    min-height: 68px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.86);
    padding: 10px 16px;
    border-radius: 14px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.16);
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 24px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.mobile-nav a {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
}

.hero {
    padding: 28px 24px 22px;
}

.hero-frame {
    position: relative;
    max-width: 1280px;
    min-height: 590px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 36px;
    background: #111827;
    box-shadow: 0 34px 90px rgba(76, 29, 149, 0.28);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.75s ease, transform 0.75s 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(17, 24, 39, 0.9) 0%, rgba(88, 28, 135, 0.72) 42%, rgba(236, 72, 153, 0.25) 100%), linear-gradient(0deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.08));
}

.hero-content {
    position: absolute;
    left: clamp(28px, 7vw, 92px);
    bottom: clamp(44px, 8vw, 96px);
    width: min(620px, calc(100% - 52px));
    color: #fff;
}

.hero-kicker,
.page-hero span,
.detail-kicker,
.section-heading span,
.feature-band span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(40px, 6vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
}

.hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
}

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

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(14px);
}

.hero-actions,
.detail-copy .primary-button {
    margin-top: 26px;
}

.primary-button,
.ghost-button,
.section-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 850;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    color: #fff;
    background: linear-gradient(90deg, var(--pink), var(--purple));
    box-shadow: 0 16px 34px rgba(236, 72, 153, 0.34);
}

.ghost-button {
    color: #fff;
    margin-left: 12px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.primary-button:hover,
.ghost-button:hover,
.section-link:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 42px rgba(139, 92, 246, 0.28);
}

.hero-controls {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero-controls button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.hero-controls button.is-active {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 10px 28px rgba(236, 72, 153, 0.42);
}

.quick-cats,
.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px;
}

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

.category-tile {
    position: relative;
    min-height: 110px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow);
    background: #111827;
}

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.category-tile span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    color: #fff;
    font-weight: 850;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
}

.category-tile:hover img {
    transform: scale(1.1);
    opacity: 0.95;
}

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

.section-heading h2,
.feature-band h2 {
    margin: 14px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading p,
.feature-band p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.section-link {
    color: var(--pink-dark);
    background: #fff;
    box-shadow: 0 12px 28px rgba(148, 163, 184, 0.18);
}

.filter-toolbar {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 14px 38px rgba(148, 163, 184, 0.16);
    backdrop-filter: blur(16px);
}

.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    padding: 0 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
}

.search-box span {
    color: var(--pink-dark);
    font-size: 22px;
}

.search-box input {
    width: 100%;
    min-height: 48px;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.filter-toolbar select {
    min-height: 50px;
    padding: 0 42px 0 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    color: var(--text);
    background: #fff;
    outline: 0;
}

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

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

.movie-card a {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--card);
    box-shadow: 0 14px 34px rgba(148, 163, 184, 0.16);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card a:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 56px rgba(139, 92, 246, 0.2);
}

.poster-wrap {
    position: relative;
    aspect-ratio: 16 / 22;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #ede9fe);
}

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

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

.poster-shade {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0));
}

.duration,
.rank-badge {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-weight: 850;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.duration {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    font-size: 12px;
    background: rgba(17, 24, 39, 0.62);
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 10px 22px rgba(236, 72, 153, 0.34);
}

.movie-info {
    padding: 16px;
}

.movie-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.meta-row {
    color: var(--muted);
    font-size: 13px;
}

.meta-row span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #c4b5fd;
}

.tag-row {
    margin-top: 12px;
}

.tag-row span {
    color: var(--pink-dark);
    background: #fce7f3;
}

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

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

.rank-item a {
    display: grid;
    grid-template-columns: 54px 118px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 30px rgba(148, 163, 184, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-item a:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(139, 92, 246, 0.18);
}

.rank-item img {
    width: 118px;
    height: 82px;
    object-fit: cover;
    border-radius: 16px;
}

.rank-item h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

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

.list-rank {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.feature-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-top: 20px;
    margin-bottom: 48px;
    border-radius: 36px;
    color: #fff;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.22), transparent 34%), linear-gradient(90deg, #7c3aed, #ec4899, #ef4444);
    box-shadow: 0 30px 72px rgba(236, 72, 153, 0.26);
}

.feature-band .primary-button {
    background: #fff;
    color: var(--pink-dark);
    flex-shrink: 0;
}

.feature-band p {
    color: rgba(255, 255, 255, 0.9);
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.page-hero {
    margin: 28px auto 6px;
    max-width: 1280px;
    padding: clamp(48px, 8vw, 86px) 32px;
    border-radius: 34px;
    background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.24), transparent 32%), linear-gradient(90deg, var(--pink), var(--purple), var(--blue));
    box-shadow: 0 28px 70px rgba(139, 92, 246, 0.25);
}

.page-hero h1 {
    margin: 16px 0 12px;
    font-size: clamp(38px, 6vw, 66px);
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
}

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

.category-overview-card {
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 42px rgba(148, 163, 184, 0.16);
}

.category-cover {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 16 / 8;
    background: #111827;
}

.category-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform 0.4s ease;
}

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

.category-cover span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.48);
}

.category-overview-card p {
    color: var(--muted);
    line-height: 1.75;
}

.mini-links {
    display: grid;
    gap: 8px;
}

.mini-links a {
    color: var(--pink-dark);
    font-weight: 750;
}

.detail-hero {
    min-height: 560px;
    background: #111827;
}

.detail-bg,
.detail-mask {
    position: absolute;
    inset: 0;
}

.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) scale(1.05);
    opacity: 0.54;
}

.detail-mask {
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(88, 28, 135, 0.76), rgba(236, 72, 153, 0.36));
}

.detail-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 26px 24px 58px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    margin: 14px 0 34px;
}

.breadcrumbs a:hover {
    color: #fff;
}

.detail-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
    aspect-ratio: 16 / 22;
    background: linear-gradient(135deg, #fce7f3, #ddd6fe);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.detail-copy p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.85;
}

.detail-meta {
    margin-top: 18px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.detail-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.detail-section {
    margin-top: -54px;
    position: relative;
    z-index: 3;
}

.player-panel {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #050816;
    aspect-ratio: 16 / 9;
    box-shadow: 0 34px 90px rgba(17, 24, 39, 0.34);
}

.player-panel video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #050816;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 16px;
    border: 0;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(5, 8, 22, 0.82), rgba(5, 8, 22, 0.2));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-icon {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    border-radius: 50%;
    font-size: 36px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 20px 44px rgba(236, 72, 153, 0.38);
}

.article-section {
    padding-top: 8px;
}

.text-card {
    padding: clamp(24px, 4vw, 46px);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 48px rgba(148, 163, 184, 0.16);
}

.text-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.text-card h2:not(:first-child) {
    margin-top: 30px;
}

.text-card p {
    margin: 0;
    color: #374151;
    font-size: 17px;
    line-height: 2;
}

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

.empty-state {
    display: none;
    padding: 28px;
    text-align: center;
    color: var(--muted);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
}

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

.site-footer {
    color: #fff;
    background: linear-gradient(90deg, #111827, #581c87, #111827);
    margin-top: 50px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    font-size: 22px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.76);
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

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

.is-hidden-card {
    display: none !important;
}

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

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

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

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

    .nav-toggle {
        display: block;
    }

    .site-nav {
        padding: 0 16px;
    }

    .brand {
        font-size: 20px;
    }

    .hero {
        padding: 18px 14px;
    }

    .hero-frame {
        min-height: 620px;
        border-radius: 26px;
    }

    .hero-overlay {
        background: linear-gradient(0deg, rgba(17, 24, 39, 0.96), rgba(88, 28, 135, 0.62), rgba(17, 24, 39, 0.2));
    }

    .hero-content {
        left: 22px;
        right: 22px;
        bottom: 92px;
        width: auto;
    }

    .hero p,
    .detail-copy p,
    .page-hero p {
        font-size: 16px;
    }

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

    .quick-cats,
    .content-section {
        padding: 22px 14px;
    }

    .quick-cat-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-heading,
    .filter-toolbar,
    .feature-band {
        flex-direction: column;
        align-items: stretch;
    }

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

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

    .rank-item a {
        grid-template-columns: 44px 92px 1fr;
        gap: 12px;
    }

    .rank-item img {
        width: 92px;
        height: 70px;
    }

    .rank-item p {
        display: none;
    }

    .page-hero {
        margin: 18px 14px 0;
        border-radius: 26px;
    }

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

    .detail-inner {
        padding: 18px 14px 48px;
    }

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

    .detail-poster {
        width: min(260px, 70vw);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding: 36px 18px;
    }
}

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

    .movie-card a {
        display: grid;
        grid-template-columns: 116px 1fr;
    }

    .poster-wrap {
        aspect-ratio: 3 / 4;
    }

    .movie-info p {
        min-height: 0;
    }

    .hero-actions {
        display: grid;
        gap: 12px;
    }

    .ghost-button {
        margin-left: 0;
    }

    .hero-controls button {
        width: 40px;
        height: 40px;
    }

    .filter-toolbar select {
        width: 100%;
    }
}
