:root {
  --blue-950: #102a57;
  --blue-900: #123b7a;
  --blue-700: #1d65c1;
  --blue-600: #2779e2;
  --cyan-500: #19b8d8;
  --green-500: #14b889;
  --yellow-500: #f6b72d;
  --red-500: #f25555;
  --gray-950: #111827;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: var(--white);
  background: linear-gradient(120deg, rgba(18, 59, 122, 0.98), rgba(29, 101, 193, 0.98));
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
}

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

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  font-size: 15px;
}

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

.nav-link {
  position: relative;
  font-weight: 700;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  transform: scaleX(0);
  background: var(--white);
  transition: transform 0.2s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-search input,
.big-search input,
.filter-bar input {
  min-width: 0;
  border: 0;
  outline: none;
  color: var(--gray-900);
  background: var(--white);
}

.nav-search input {
  flex: 1;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
}

.nav-search button,
.big-search button {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue-600);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-search button {
  height: 34px;
  padding: 0 16px;
}

.nav-search button:hover,
.big-search button:hover {
  transform: translateY(-1px);
  background: var(--blue-700);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.mobile-nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 18px;
}

.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700), var(--cyan-500));
  overflow: hidden;
}

.hero-stage,
.hero-slide {
  position: relative;
  min-height: 640px;
}

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

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(25, 184, 216, 0.30), transparent 32%),
    linear-gradient(90deg, rgba(10, 23, 48, 0.92), rgba(10, 23, 48, 0.62) 48%, rgba(10, 23, 48, 0.18)),
    linear-gradient(0deg, rgba(10, 23, 48, 0.86), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  min-height: 640px;
  margin: 0 auto;
  padding: 72px 24px 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-500);
  font-size: 13px;
  font-weight: 900;
}

.hero-content h1 {
  max-width: 820px;
  margin: 14px 0 10px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-content h2 {
  margin: 0 0 16px;
  color: #dbeafe;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 24px;
  color: #eaf5ff;
  font-size: 20px;
}

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

.hero-tags span,
.tag-row span,
.detail-meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

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

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

.primary-btn {
  color: var(--blue-700);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.20);
}

.primary-btn:hover,
.ghost-btn:hover,
.anchor-btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.ghost-btn {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.ghost-btn:hover {
  color: var(--blue-700);
  background: var(--white);
}

.hero-panel {
  position: absolute;
  right: max(24px, calc((100vw - 1240px) / 2 + 24px));
  bottom: 72px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.panel-item {
  text-align: center;
}

.panel-item strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.panel-item span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #dbeafe;
}

.panel-line {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.32);
}

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--white);
}

.search-band {
  margin-top: -42px;
  position: relative;
  z-index: 5;
}

.search-box-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 22px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-box-wrap h2 {
  margin: 0 0 6px;
  font-size: 26px;
}

.search-box-wrap p {
  margin: 0;
  color: var(--gray-600);
}

.big-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: var(--gray-100);
}

.big-search input {
  flex: 1;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
}

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

.section {
  padding: 78px 0;
}

.white-section {
  background: var(--white);
}

.soft-section {
  background: linear-gradient(135deg, #f2fbff, #f4f7fb);
}

.rank-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(25, 184, 216, 0.22), transparent 28%),
    linear-gradient(135deg, #111827, #102a57 54%, #0e7490);
}

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

.section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
}

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

.light-heading a,
.light-heading .section-kicker {
  color: #b8ecff;
}

.feature-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 22px;
  overflow-x: auto;
  padding: 2px 4px 24px;
  scroll-snap-type: x mandatory;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.movie-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--gray-900);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.feature-slider .movie-card {
  scroll-snap-align: start;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.movie-card.compact .poster-wrap {
  aspect-ratio: 16 / 10;
}

.poster-wrap img,
.category-tile img,
.category-covers img,
.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.year-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  background: rgba(17, 24, 39, 0.78);
  backdrop-filter: blur(10px);
}

.year-pill {
  right: 10px;
  bottom: 10px;
  min-width: 54px;
  padding: 5px 9px;
}

.rank-badge {
  left: 10px;
  top: 10px;
  min-width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--red-500), var(--yellow-500));
  font-style: normal;
}

.movie-card-body {
  padding: 16px;
}

.movie-card-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.movie-card:hover h3 {
  color: var(--blue-700);
}

.movie-card-body p {
  margin: 0 0 12px;
  min-height: 44px;
  color: var(--gray-600);
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 700;
}

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

.tag-row span {
  color: var(--blue-700);
  background: #dbeafe;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.category-tile {
  position: relative;
  min-height: 128px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.75), rgba(17, 24, 39, 0.08));
}

.category-tile span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(25, 184, 216, 0.35), transparent 34%),
    linear-gradient(135deg, var(--blue-950), var(--blue-700));
  padding: 88px 0 78px;
}

.page-hero h1 {
  max-width: 780px;
  margin: 12px 0 12px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  font-size: 19px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

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

.filter-bar {
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.filter-bar input {
  width: min(100%, 620px);
  height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-filter button {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
  cursor: pointer;
}

.tag-filter button.is-active,
.tag-filter button:hover {
  color: var(--blue-700);
  background: var(--white);
}

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

.category-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 168px;
  overflow: hidden;
  background: var(--blue-950);
}

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

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

.category-card-body p {
  margin: 0;
  color: var(--gray-600);
}

.detail-hero {
  position: relative;
  min-height: 560px;
  color: var(--white);
  overflow: hidden;
  background: var(--gray-950);
}

.detail-bg,
.detail-bg-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-bg {
  object-fit: cover;
  filter: blur(10px) saturate(1.1);
  transform: scale(1.08);
  opacity: 0.5;
}

.detail-bg-mask {
  background:
    radial-gradient(circle at 76% 24%, rgba(25, 184, 216, 0.28), transparent 35%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.70));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 56px;
  padding-bottom: 64px;
}

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

.detail-cover {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.detail-info h1 {
  margin: 12px 0 18px;
  max-width: 820px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.detail-one-line {
  max-width: 860px;
  margin: 0 0 22px;
  color: #eaf5ff;
  font-size: 20px;
}

.detail-meta span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.detail-tags span {
  color: #dbeafe;
  background: rgba(29, 101, 193, 0.40);
}

.anchor-btn {
  margin-top: 28px;
  color: var(--white);
  background: var(--blue-600);
  box-shadow: var(--shadow-soft);
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--gray-950);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: var(--gray-950);
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--gray-950);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58);
}

.play-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 121, 226, 0.86);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.12), var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.player-cover:hover .play-ring {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(25, 184, 216, 0.94);
}

.play-ring span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid var(--white);
}

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

.detail-article {
  max-width: 980px;
  margin: 36px auto 0;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-article h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.detail-article p {
  margin: 0 0 26px;
  color: var(--gray-700);
  font-size: 18px;
}

.detail-article p:last-child {
  margin-bottom: 0;
}

.site-footer {
  color: var(--gray-300);
  background: var(--gray-950);
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 24px 34px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer p {
  margin: 0;
  color: #9ca3af;
}

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

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

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px 28px;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.movie-card.is-hidden {
  display: none;
}

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

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

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

  .nav-search {
    display: none;
  }
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero-content {
    min-height: 620px;
    padding-top: 56px;
  }

  .hero-panel {
    right: 24px;
    left: 24px;
    justify-content: center;
  }

  .search-box-wrap {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

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

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

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

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

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

@media (max-width: 560px) {
  .nav-wrap,
  .section-inner,
  .footer-grid,
  .copyright {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .ghost-btn,
  .anchor-btn {
    width: 100%;
  }

  .poster-grid,
  .wide-grid,
  .ranking-grid,
  .large-ranking,
  .category-overview,
  .category-strip {
    grid-template-columns: 1fr;
  }

  .movie-grid {
    gap: 18px;
  }

  .big-search {
    display: grid;
    border-radius: 20px;
  }

  .big-search input,
  .big-search button {
    width: 100%;
    border-radius: 16px;
  }

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

  .detail-article {
    padding: 22px;
  }
}
