:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-850: #132033;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --card: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

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

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

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

.nav-wrap {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.brand-text {
  white-space: nowrap;
  font-size: 20px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  color: #cbd5e1;
}

.desktop-nav a,
.mobile-panel a,
.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover,
.footer-links a:hover {
  color: var(--amber-400);
}

.nav-search {
  margin-left: auto;
  min-width: 280px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(51, 65, 85, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.nav-search input,
.mobile-search input,
.big-search input,
.page-filter input,
.search-page-form input {
  width: 100%;
  border: 0;
  outline: none;
  color: #fff;
  background: transparent;
  font: inherit;
}

.nav-search input {
  padding: 11px 14px 11px 18px;
}

.nav-search input::placeholder,
.mobile-search input::placeholder,
.search-page-form input::placeholder {
  color: #94a3b8;
}

.nav-search button,
.mobile-search button,
.big-search button,
.search-page-form button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  color: #111827;
  background: var(--amber-500);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-search button {
  align-self: stretch;
  padding: 0 18px;
}

.nav-search button:hover,
.mobile-search button:hover,
.big-search button:hover,
.search-page-form button:hover,
.primary-button:hover {
  background: var(--amber-400);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(51, 65, 85, 0.9);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 16px 24px 24px;
  background: var(--slate-900);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel nav {
  display: grid;
  gap: 12px;
  color: #cbd5e1;
}

.mobile-search {
  display: flex;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--slate-700);
}

.mobile-search input {
  padding: 13px 16px;
}

.mobile-search button {
  padding: 0 18px;
}

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

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img,
.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: saturate(1.1) contrast(1.08);
}

.hero-shade,
.detail-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 45%, rgba(245, 158, 11, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.05) 0%, rgba(2, 6, 23, 0.82) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.2) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 78px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}

.eyebrow,
.section-heading span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  color: #111827;
  background: var(--amber-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 24px;
  color: #dbeafe;
  font-size: 20px;
  line-height: 1.75;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(226, 232, 240, 0.16);
  font-size: 13px;
}

.hero-actions,
.section-heading,
.detail-info .primary-button {
  margin-top: 28px;
}

.primary-button,
.ghost-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  color: #111827;
  background: var(--amber-500);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.26);
}

.ghost-button {
  margin-left: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 26px;
}

.hero-next {
  right: 26px;
}

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

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

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

.home-search-panel,
.section-wrap,
.horizontal-section,
.page-main,
.detail-main {
  max-width: 1280px;
  margin: 0 auto;
}

.home-search-panel {
  position: relative;
  z-index: 8;
  margin-top: -52px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 26px;
  align-items: center;
  border-radius: var(--radius-xl);
  color: #fff;
  background: rgba(15, 23, 42, 0.92);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.home-search-panel h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.home-search-panel p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.big-search,
.search-page-form {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(51, 65, 85, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.big-search input,
.search-page-form input {
  padding: 16px 20px;
}

.big-search button,
.search-page-form button {
  padding: 0 26px;
}

.section-wrap,
.horizontal-section {
  padding: 58px 24px 0;
}

.section-heading {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-heading h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.section-heading a {
  margin-left: auto;
  color: var(--amber-600);
  font-weight: 900;
}

.section-heading.inverted h2,
.section-heading.inverted a {
  color: #fff;
}

.compact-heading {
  margin-top: 0;
}

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

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

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

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

.movie-card:hover .poster-link img,
.category-tile:hover img,
.wide-card:hover img {
  transform: scale(1.08);
}

.poster-meta,
.rank-badge {
  position: absolute;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.poster-meta {
  right: 12px;
  bottom: 12px;
}

.rank-badge {
  left: 12px;
  top: 12px;
  background: var(--amber-600);
}

.card-body {
  padding: 18px;
}

.card-body h2 {
  min-height: 52px;
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.card-body h2 a:hover,
.wide-content h2 a:hover,
.text-link:hover {
  color: var(--amber-600);
}

.card-meta,
.wide-meta {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.card-summary,
.wide-content p {
  margin: 0 0 14px;
  color: #475569;
  line-height: 1.65;
  font-size: 14px;
}

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

.horizontal-section {
  max-width: 1232px;
  margin-top: 58px;
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  background: linear-gradient(90deg, var(--slate-850), var(--slate-950));
  box-shadow: var(--shadow-soft);
}

.scroll-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.scroll-row .movie-card {
  width: 310px;
  flex: 0 0 310px;
  scroll-snap-align: start;
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: var(--slate-900);
  box-shadow: var(--shadow-card);
}

.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.88));
}

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

.category-tile span,
.category-tile strong {
  position: relative;
  z-index: 1;
}

.category-tile span {
  font-size: 22px;
  font-weight: 900;
}

.category-tile strong {
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.55;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: start;
}

.rank-panel,
.feature-panel,
.content-card,
.category-overview-card {
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.rank-panel {
  padding: 28px;
}

.feature-panel {
  min-height: 420px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.34), transparent 38%),
    linear-gradient(135deg, var(--slate-900), var(--slate-950));
}

.feature-panel h2 {
  margin: 0 0 14px;
  font-size: 36px;
}

.feature-panel p {
  color: #cbd5e1;
  line-height: 1.8;
}

.wide-card {
  display: grid;
  grid-template-columns: auto 138px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  margin-bottom: 16px;
}

.rank-panel .wide-card {
  box-shadow: none;
  border: 1px solid #e2e8f0;
}

.list-rank {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #111827;
  background: var(--amber-500);
  font-weight: 900;
}

.wide-cover {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  background: var(--slate-900);
}

.wide-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.wide-content h2 {
  margin: 0 0 7px;
  font-size: 20px;
}

.text-link {
  min-height: auto;
  padding: 0;
  color: var(--amber-600);
}

.page-main,
.detail-main {
  padding-bottom: 40px;
}

.page-hero {
  margin: 34px 24px 0;
  border-radius: var(--radius-xl);
  padding: 44px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.32), transparent 34%),
    linear-gradient(135deg, var(--slate-900), var(--slate-950));
  box-shadow: var(--shadow-soft);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

.page-filter,
.search-page-form {
  max-width: 680px;
  margin-top: 28px;
}

.page-filter input {
  padding: 15px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(51, 65, 85, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

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

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

.category-overview-card a {
  display: block;
  padding: 22px;
}

.mini-covers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.mini-covers img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  background: var(--slate-900);
}

.category-overview-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-overview-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.ranking-list {
  display: block;
}

.search-status {
  margin-bottom: 22px;
  color: var(--text-muted);
  font-weight: 800;
}

.breadcrumbs {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--amber-600);
  font-weight: 800;
}

.detail-hero {
  position: relative;
  margin: 28px 24px 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #fff;
  background: var(--slate-950);
  box-shadow: var(--shadow-soft);
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-layout {
  position: relative;
  z-index: 2;
  padding: 46px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 42px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 3 / 4;
  background: var(--slate-900);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
}

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

.detail-info h1 {
  margin: 20px 0 14px;
  font-size: clamp(38px, 5.5vw, 70px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 780px;
  margin: 0 0 22px;
  color: #e2e8f0;
  font-size: 20px;
  line-height: 1.75;
}

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

.detail-tags span {
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.62);
}

.player-section {
  margin: 34px 24px 0;
  border-radius: var(--radius-xl);
  padding: 28px;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-950));
  box-shadow: var(--shadow-soft);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.movie-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  color: #fff;
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.24), rgba(2, 6, 23, 0.58));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: var(--amber-500);
  font-size: 34px;
  box-shadow: 0 18px 44px rgba(245, 158, 11, 0.32);
}

.play-overlay strong {
  font-size: 20px;
}

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

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.content-card {
  padding: 30px;
}

.content-card h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.content-card p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.9;
}

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

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 40px;
}

.footer-brand {
  color: #fff;
  font-size: 24px;
}

.site-footer p {
  color: #94a3b8;
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding: 18px 24px;
  text-align: center;
  color: #64748b;
}

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

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

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-search {
    margin-left: auto;
  }

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

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

@media (max-width: 860px) {
  .nav-wrap {
    padding: 0 16px;
  }

  .nav-search {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    padding: 72px 56px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .home-search-panel {
    margin: -34px 16px 0;
    grid-template-columns: 1fr;
  }

  .section-wrap,
  .horizontal-section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .category-grid,
  .category-overview-grid,
  .split-layout,
  .detail-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-template-columns: auto 110px 1fr;
  }

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

  .detail-cover {
    max-width: 300px;
  }
}

@media (max-width: 560px) {
  .brand-text {
    font-size: 17px;
  }

  .hero-copy {
    padding: 58px 28px;
  }

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

  .hero p,
  .detail-one-line {
    font-size: 16px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

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

  .scroll-row .movie-card {
    width: 270px;
    flex-basis: 270px;
  }

  .page-hero,
  .detail-hero,
  .player-section {
    margin-left: 12px;
    margin-right: 12px;
    padding: 24px;
  }

  .wide-card {
    grid-template-columns: 1fr;
  }

  .list-rank {
    position: absolute;
    margin: 10px;
    z-index: 2;
  }

  .wide-card {
    position: relative;
  }

  .wide-cover {
    width: 100%;
  }

  .big-search,
  .search-page-form {
    border-radius: 18px;
    flex-direction: column;
  }

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