:root {
    color-scheme: light;
    --bg: #f8fafc;
    --panel: #ffffff;
    --text: #111827;
    --muted: #64748b;
    --border: #e2e8f0;
    --red: #ef4444;
    --orange: #f97316;
    --green: #16a34a;
    --blue: #2563eb;
    --purple: #7c3aed;
    --pink: #db2777;
    --cyan: #0891b2;
    --yellow: #ca8a04;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(239, 68, 68, 0.12), transparent 32rem),
        radial-gradient(circle at top right, rgba(22, 163, 74, 0.12), transparent 28rem),
        var(--bg);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.88);
}

.header-inner {
    width: min(1240px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    box-shadow: 0 14px 30px rgba(239, 68, 68, 0.25);
}

.brand-text {
    display: grid;
    line-height: 1.15;
}

.brand-text strong {
    font-size: 22px;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, #dc2626, #f97316);
    -webkit-background-clip: text;
    color: transparent;
}

.brand-text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: #334155;
    font-weight: 600;
    transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #15803d;
    background: #ecfdf5;
}

.header-search,
.mobile-search,
.big-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.big-search input,
.list-toolbar select {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    outline: none;
    transition: 0.2s ease;
}

.header-search input {
    width: 220px;
    padding: 10px 14px;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.list-toolbar select:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.header-search button,
.mobile-search button,
.big-search button,
.toolbar-actions button,
.primary-button,
.ghost-button,
.text-button {
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.big-search button,
.primary-button {
    color: #fff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.22);
}

.header-search button,
.mobile-search button {
    padding: 10px 16px;
}

.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
}

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

.header-search button:hover,
.mobile-search button:hover,
.big-search button:hover,
.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.toolbar-actions button:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #0f172a;
}

.mobile-panel {
    display: none;
    border-top: 1px solid var(--border);
    padding: 16px;
    background: #fff;
}

.mobile-nav {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.mobile-nav-link {
    padding: 12px 14px;
    border-radius: 14px;
    color: #334155;
    background: #f8fafc;
    font-weight: 700;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    padding: 76px 0 70px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(127, 29, 29, 0.94), rgba(249, 115, 22, 0.88) 48%, rgba(21, 128, 61, 0.9)),
        #7f1d1d;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.35;
}

.orb-one {
    width: 360px;
    height: 360px;
    left: -110px;
    top: 80px;
    background: #facc15;
}

.orb-two {
    width: 440px;
    height: 440px;
    right: -140px;
    bottom: -90px;
    background: #22c55e;
}

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

.hero-slide {
    display: none;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 52px;
}

.hero-slide.active {
    display: grid;
    animation: heroFade 0.5s ease both;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-kicker,
.page-hero span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-copy h1 {
    margin: 26px 0 20px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-copy em {
    font-style: normal;
    color: #fde68a;
}

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

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

.hero-tags {
    margin: 24px 0 30px;
}

.hero-tags span,
.tag-row span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.tag-row span {
    color: #475569;
    background: #f1f5f9;
}

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

.hero-poster,
.feature-poster,
.detail-poster {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.34);
    background: rgba(255, 255, 255, 0.16);
}

.hero-poster {
    padding: 12px;
    transform: rotate(2deg);
}

.hero-poster img,
.feature-poster img,
.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 24px;
}

.hero-score,
.detail-poster span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
    font-weight: 800;
}

.hero-controls {
    display: flex;
    gap: 10px;
    margin-top: 34px;
}

.hero-dot {
    width: 34px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
}

.hero-dot.active {
    width: 54px;
    background: #fff;
}

.quick-category-section,
.two-column-layout,
.container + .container,
.category-overview-grid,
.detail-layout,
.search-results-section {
    margin-top: 56px;
}

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

.section-heading h2,
.side-column h2,
.content-card h2,
.side-card h2,
.list-toolbar h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 4vw, 36px);
    letter-spacing: -0.03em;
}

.section-heading p,
.side-column p,
.list-toolbar p,
.content-card p,
.side-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.section-more,
.text-button {
    color: #dc2626;
    font-weight: 800;
}

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

.category-card,
.category-overview-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow-soft);
}

.category-card {
    min-height: 210px;
    padding: 22px;
}

.category-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
}

.category-card p {
    min-height: 48px;
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.55;
}

.category-card small {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-weight: 800;
}

.category-mini-list {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    color: #475569;
    font-size: 13px;
}

.color-red,
.color-rose {
    background: linear-gradient(135deg, #fff1f2, #ffffff);
}

.color-orange,
.color-yellow {
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.color-purple,
.color-pink {
    background: linear-gradient(135deg, #faf5ff, #ffffff);
}

.color-blue,
.color-cyan {
    background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.color-green {
    background: linear-gradient(135deg, #ecfdf5, #ffffff);
}

.color-slate {
    background: linear-gradient(135deg, #f1f5f9, #ffffff);
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.sticky-panel {
    position: sticky;
    top: 100px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.movie-grid,
.wide-grid {
    display: grid;
    gap: 18px;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.wide-card {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.04);
}

.play-mark,
.rank-badge {
    position: absolute;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
}

.play-mark {
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.88);
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
    transition: 0.2s ease;
}

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

.rank-badge {
    top: 12px;
    left: 12px;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.card-body {
    padding: 18px;
}

.card-meta,
.card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.card-meta a {
    color: #dc2626;
    font-weight: 800;
}

.movie-card h3 {
    margin: 10px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

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

.card-stats {
    justify-content: space-between;
    margin-top: 14px;
}

.rank-list,
.side-recommend-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.rank-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 44px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
    transition: 0.2s ease;
}

.rank-item:hover {
    background: #ecfdf5;
    transform: translateX(4px);
}

.rank-num {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    font-weight: 900;
}

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

.rank-score {
    color: #16a34a;
    font-weight: 900;
    text-align: right;
}

.page-hero {
    padding: 70px 0;
    color: #fff;
    background: linear-gradient(135deg, #991b1b, #f97316 48%, #15803d);
}

.compact-hero h1,
.category-hero h1 {
    margin: 18px 0 12px;
    font-size: clamp(38px, 6vw, 64px);
    letter-spacing: -0.05em;
}

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

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

.category-overview-card {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    min-height: 290px;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 14px;
}

.category-cover-stack img {
    width: 100%;
    height: 122px;
    border-radius: 16px;
    object-fit: cover;
}

.category-overview-body {
    padding: 22px;
}

.category-count {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff;
    color: #dc2626;
    font-weight: 900;
}

.category-overview-body h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

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

.category-overview-body ul {
    margin: 14px 0 0;
    padding-left: 18px;
    color: #334155;
    line-height: 1.9;
}

.category-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
    gap: 38px;
}

.breadcrumb {
    display: inline-flex;
    margin-right: 12px;
    color: #fff;
    font-weight: 800;
}

.feature-poster {
    padding: 10px;
    color: #fff;
}

.feature-poster strong {
    display: block;
    padding: 12px 6px 4px;
}

.list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.toolbar-actions select,
.toolbar-actions button {
    min-height: 42px;
    padding: 0 14px;
}

.toolbar-actions button {
    color: #334155;
    background: #f1f5f9;
}

.category-movie-grid {
    margin-bottom: 64px;
}

.detail-hero {
    padding: 56px 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(127, 29, 29, 0.88)),
        #111827;
}

.detail-hero-inner {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.detail-poster {
    padding: 10px;
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.detail-breadcrumb a {
    color: #fde68a;
    font-weight: 800;
}

.detail-breadcrumb em {
    font-style: normal;
}

.detail-intro h1 {
    margin: 18px 0 16px;
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 820px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.8;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.detail-meta-grid span {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
}

.detail-meta-grid b {
    display: block;
    margin-bottom: 4px;
    color: #fff;
}

.detail-tags {
    margin-bottom: 24px;
}

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

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

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

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

.movie-video {
    width: 100%;
    height: 100%;
    background: #020617;
    object-fit: contain;
}

.player-start {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.34);
    transform: translate(-50%, -50%);
    cursor: pointer;
    font-weight: 900;
}

.player-start span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.player-card.playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.player-status {
    padding: 14px 18px;
    color: var(--muted);
    background: #f8fafc;
    border-top: 1px solid var(--border);
}

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

.content-card p {
    font-size: 17px;
}

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

.info-card dl div {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.info-card dt {
    color: var(--muted);
    font-weight: 800;
}

.info-card dd {
    margin: 0;
}

.info-card dd .tag-row {
    display: inline-flex;
}

.side-card {
    position: sticky;
    top: 100px;
}

.big-search {
    max-width: 720px;
    margin-top: 28px;
}

.big-search input {
    flex: 1;
    min-height: 54px;
    padding: 0 20px;
    font-size: 17px;
}

.big-search button {
    min-height: 54px;
    padding: 0 24px;
}

.site-footer {
    margin-top: 72px;
    color: #cbd5e1;
    background: #0f172a;
}

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

.footer-logo {
    margin-bottom: 12px;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
}

.footer-brand p {
    max-width: 420px;
    margin: 0;
    line-height: 1.8;
}

.footer-links h3 {
    margin: 0 0 14px;
    color: #fff;
}

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

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

.footer-link-grid a {
    color: #cbd5e1;
}

.footer-link-grid a:hover {
    color: #86efac;
}

.footer-bottom {
    padding: 18px;
    text-align: center;
    color: #94a3b8;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

@media (max-width: 1080px) {
    .header-search {
        display: none;
    }

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

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

    .sticky-panel,
    .side-card {
        position: static;
    }
}

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

    .menu-toggle {
        display: block;
    }

    body.menu-open .mobile-panel {
        display: block;
    }

    .hero-slide,
    .category-hero-inner,
    .detail-hero-inner,
    .footer-inner,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .hero-poster,
    .feature-poster,
    .detail-poster {
        max-width: 340px;
    }

    .wide-card {
        grid-template-columns: 140px minmax(0, 1fr);
    }

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

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

    .list-toolbar {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .brand-text small {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding-top: 46px;
    }

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

    .wide-card {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .detail-meta-grid,
    .info-card dl div {
        grid-template-columns: 1fr;
    }

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

    .big-search,
    .mobile-search {
        align-items: stretch;
        flex-direction: column;
    }

    .big-search button,
    .mobile-search button {
        width: 100%;
    }
}
