:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --orange-700: #c2410c;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --red-600: #dc2626;
  --amber-50: #fffbeb;
  --blue-50: #eff6ff;
  --teal-50: #f0fdfa;
  --white: #ffffff;
  --black: #000000;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.16);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--slate-50);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800), var(--slate-900));
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.28);
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--red-600));
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.35);
}

.brand-text {
  font-size: 26px;
  line-height: 1;
  background: linear-gradient(90deg, var(--orange-500), #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.header-search {
  position: relative;
  width: min(270px, 26vw);
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-bar input {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 999px;
}

.header-search input {
  padding: 10px 45px 10px 16px;
  color: var(--white);
  background: rgba(51, 65, 85, 0.86);
}

.header-search input:focus {
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.85);
}

.header-search button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 0;
  color: var(--slate-200);
  background: transparent;
  font-size: 20px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 28px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

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

.mobile-nav-link {
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--orange-500);
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 8px;
}

.mobile-search input {
  padding: 11px 16px;
  color: var(--white);
  background: var(--slate-700);
}

.mobile-search button,
.big-search button {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--red-600));
  font-weight: 750;
}

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.hero-slide::after,
.detail-hero-mask,
.rank-hero-mask {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.88));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 44px;
  height: 100%;
  align-items: center;
  padding: 76px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--orange-500);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-tags,
.detail-meta,
.tag-row,
.filter-chips,
.keyword-cloud,
.mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-desc {
  max-width: 680px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

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

.primary-button,
.ghost-button,
.text-button,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  min-height: 48px;
  padding: 0 26px;
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--red-600));
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.32);
}

.ghost-button {
  min-height: 48px;
  padding: 0 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover,
.section-link:hover {
  transform: translateY(-2px);
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-panel h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 22px;
}

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

.hero-mini-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--slate-900);
}

.hero-mini-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.3s ease;
}

.hero-mini-card span {
  position: absolute;
  inset: auto 10px 10px 10px;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.65);
}

.hero-mini-card:hover img {
  transform: scale(1.08);
}

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 24px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

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

.hero-dot.is-active {
  width: 36px;
  background: var(--orange-500);
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff, var(--slate-50));
}

.section-blue {
  background: linear-gradient(180deg, var(--blue-50), #ffffff);
}

.section-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-950), var(--slate-900));
}

.section-amber {
  background: linear-gradient(135deg, var(--amber-50), #fff7ed);
}

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

.section-heading.no-margin {
  margin-bottom: 20px;
}

.section-heading h2,
.page-hero h1,
.rank-hero h1,
.detail-hero h1 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-heading h2 {
  color: var(--slate-900);
  font-size: clamp(30px, 4vw, 42px);
}

.light-heading h2,
.light-heading .section-link,
.section-dark .movie-card h3,
.section-dark .movie-card .card-meta {
  color: var(--white);
}

.section-heading p:not(.section-kicker) {
  margin: 8px 0 0;
  color: var(--slate-600);
}

.section-dark .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.section-icon {
  color: var(--orange-500);
  font-size: 34px;
}

.section-link,
.text-button {
  color: var(--orange-600);
}

.category-grid,
.movie-grid,
.category-overview-grid {
  display: grid;
  gap: 22px;
}

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

.category-card {
  min-height: 160px;
  padding: 24px;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
}

.category-card::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  content: "";
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.22);
}

.category-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 900;
}

.category-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

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

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

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: var(--slate-900);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.24);
}

.poster-link:hover img {
  transform: scale(1.09);
}

.poster-badge,
.card-rank {
  position: absolute;
  z-index: 2;
  top: 12px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
}

.poster-badge {
  right: 12px;
  padding: 5px 10px;
  background: var(--orange-600);
}

.card-rank {
  left: 12px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: linear-gradient(135deg, #f59e0b, var(--orange-600));
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35);
}

.poster-mask {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 18px;
  color: var(--white);
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18), transparent);
  transition: opacity 0.25s ease;
}

.poster-link:hover .poster-mask {
  opacity: 1;
}

.movie-card h3 {
  margin: 14px 0 5px;
  color: var(--slate-900);
  font-size: 16px;
  line-height: 1.35;
}

.movie-card h3 a:hover,
.horizontal-card h3 a:hover {
  color: var(--orange-600);
}

.card-meta,
.card-desc {
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
}

.card-desc {
  display: -webkit-box;
  margin-top: 6px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compact-card .card-desc {
  display: none;
}

.two-column-layout,
.ranking-layout,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.85fr);
  gap: 30px;
  align-items: start;
}

.ranking-panel,
.detail-card,
.category-overview-card,
.filter-bar {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.ranking-panel {
  padding: 24px;
}

.ranking-panel h2,
.related-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
}

.horizontal-poster {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--slate-900);
}

.horizontal-poster img {
  width: 82px;
  height: 114px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.horizontal-card:hover img {
  transform: scale(1.08);
}

.horizontal-rank {
  position: absolute;
  left: 8px;
  top: 8px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange-600);
  font-weight: 900;
  font-size: 12px;
}

.horizontal-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.35;
}

.horizontal-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--slate-600);
  font-size: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mini-meta {
  margin-top: 8px;
  color: var(--slate-400);
  font-size: 12px;
}

.page-hero,
.rank-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.page-hero {
  padding: 78px 0;
}

.page-hero h1,
.rank-hero h1,
.detail-hero h1 {
  font-size: clamp(42px, 6vw, 70px);
}

.page-hero p,
.rank-hero p,
.detail-hero p {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

.category-overview-card {
  overflow: hidden;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 170px;
  background: var(--slate-900);
}

.category-preview img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

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

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

.category-overview-body p {
  margin: 0 0 16px;
  color: var(--slate-600);
}

.filter-bar {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
}

.filter-bar label {
  display: grid;
  gap: 8px;
  color: var(--slate-700);
  font-weight: 800;
}

.filter-bar input {
  padding: 13px 18px;
  color: var(--slate-900);
  background: var(--slate-100);
}

.filter-bar input:focus {
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.8);
}

.filter-chips button,
.tag-row a,
.keyword-cloud a {
  border: 0;
  border-radius: 999px;
  color: var(--slate-700);
  background: var(--slate-100);
  padding: 8px 13px;
  font-weight: 750;
}

.filter-chips button:hover,
.filter-chips button.is-active,
.tag-row a:hover,
.keyword-cloud a:hover {
  color: var(--white);
  background: linear-gradient(90deg, var(--orange-600), var(--red-600));
}

.big-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: min(680px, 100%);
  margin-top: 30px;
}

.big-search input {
  padding: 15px 20px;
}

.big-search button {
  padding: 0 28px;
}

.rank-hero,
.detail-hero {
  min-height: 420px;
}

.rank-hero > img,
.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.rank-hero-content,
.detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.sticky-panel {
  position: sticky;
  top: 94px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb a:hover {
  color: var(--orange-500);
}

.player-section {
  background: var(--slate-900);
  padding: 34px 0 42px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.movie-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.2), rgba(0, 0, 0, 0.68));
  font-size: 20px;
  font-weight: 900;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-circle {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-600), var(--red-600));
  box-shadow: 0 20px 42px rgba(234, 88, 12, 0.42);
  font-size: 34px;
  text-indent: 5px;
}

.detail-section {
  background: linear-gradient(180deg, var(--slate-50), #ffffff);
}

.detail-card {
  padding: 28px;
}

.detail-title-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.detail-title-row img {
  width: 120px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.detail-title-row h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.detail-title-row p {
  margin: 0;
  color: var(--slate-600);
}

.text-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
}

.text-block h2 {
  position: relative;
  margin: 0 0 12px;
  padding-left: 14px;
  font-size: 23px;
}

.text-block h2::before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 22px;
  content: "";
  border-radius: 999px;
  background: var(--orange-600);
}

.text-block p {
  margin: 0;
  color: var(--slate-700);
  font-size: 16px;
}

.review-block {
  padding: 24px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7ed, var(--amber-50));
}

.related-card {
  position: sticky;
  top: 94px;
}

.site-footer {
  color: var(--slate-300);
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 54px 0;
}

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

.footer-brand p {
  max-width: 380px;
  color: var(--slate-400);
}

.site-footer h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 18px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--orange-500);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 18px 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--slate-400);
  font-size: 14px;
}

.is-filtered-out {
  display: none !important;
}

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

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

@media (max-width: 920px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: auto;
    min-height: 680px;
  }

  .hero-slide {
    position: relative;
    display: none;
    min-height: 680px;
  }

  .hero-slide.is-active {
    display: block;
  }

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

  .hero-panel {
    margin-bottom: 40px;
  }

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

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

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

  .header-bar {
    min-height: 64px;
  }

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

  .hero-content {
    padding: 54px 0 86px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-mini-grid,
  .movie-grid,
  .small-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 48px 0;
  }

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

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

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

  .detail-title-row img {
    width: 160px;
    height: 240px;
  }

  .horizontal-card {
    grid-template-columns: 74px 1fr;
  }

  .horizontal-poster img {
    width: 74px;
    height: 104px;
  }

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

  .big-search button {
    min-height: 46px;
  }
}
