:root {
  --lamp-dark: #0f0f0f;
  --lamp-charcoal: #1a1a1a;
  --lamp-panel: #211b18;
  --lamp-brown: #4e342e;
  --lamp-warm: #ffa726;
  --lamp-gold: #ffb74d;
  --lamp-beige: #d7ccc8;
  --lamp-muted: rgba(215, 204, 200, 0.68);
  --lamp-line: rgba(78, 52, 46, 0.42);
  --shadow-warm: 0 0 28px rgba(255, 167, 38, 0.22);
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--lamp-beige);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 167, 38, 0.08), transparent 32rem),
    radial-gradient(circle at 90% 18%, rgba(255, 183, 77, 0.08), transparent 28rem),
    var(--lamp-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "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(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 1px solid var(--lamp-line);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: linear-gradient(135deg, var(--lamp-warm), var(--lamp-gold));
  border-radius: 999px;
  box-shadow: var(--shadow-warm);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong,
.footer-brand {
  font-size: 22px;
  background: linear-gradient(90deg, var(--lamp-warm), var(--lamp-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(215, 204, 200, 0.62);
  font-size: 12px;
  font-weight: 500;
}

.desktop-nav,
.mobile-nav {
  align-items: center;
  gap: 26px;
}

.desktop-nav {
  display: flex;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--lamp-beige);
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--lamp-gold);
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--lamp-beige);
  background: rgba(78, 52, 46, 0.3);
  border: 1px solid var(--lamp-line);
  border-radius: 12px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid var(--lamp-line);
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-section {
  padding: 32px 0 18px;
}

.hero-carousel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--lamp-line);
  border-radius: 22px;
  background: var(--lamp-charcoal);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.14)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 58%);
}

.hero-copy {
  position: absolute;
  left: clamp(24px, 6vw, 72px);
  bottom: clamp(26px, 6vw, 64px);
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--lamp-gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-copy h3 {
  margin: 0 0 10px;
  color: var(--lamp-gold);
  font-size: clamp(21px, 3vw, 32px);
}

.hero-copy p {
  max-width: 640px;
  margin: 0 0 18px;
  color: rgba(229, 231, 235, 0.94);
  font-size: 16px;
}

.hero-meta,
.detail-meta,
.movie-tags,
.detail-tags,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.detail-meta span,
.movie-tags span,
.detail-tags span,
.quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--lamp-beige);
  background: rgba(78, 52, 46, 0.42);
  border: 1px solid var(--lamp-line);
  border-radius: 999px;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.primary-button,
.ghost-button,
.quick-search button,
.section-more,
.enter-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button,
.quick-search button {
  color: #fff;
  background: linear-gradient(135deg, var(--lamp-warm), var(--lamp-gold));
  box-shadow: var(--shadow-warm);
  border: 0;
}

.ghost-button,
.section-more,
.enter-link {
  color: var(--lamp-gold);
  background: rgba(26, 26, 26, 0.76);
  border: 1px solid var(--lamp-line);
}

.primary-button:hover,
.ghost-button:hover,
.quick-search button:hover,
.section-more:hover,
.enter-link:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 32px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, background 0.2s ease;
}

.hero-carousel:hover .hero-arrow {
  opacity: 1;
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-arrow:hover {
  background: rgba(255, 167, 38, 0.82);
}

.hero-dots {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.52);
  border: 0;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

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

.home-search-panel,
.filter-panel {
  margin-top: 24px;
  padding: 18px;
  background: rgba(26, 26, 26, 0.82);
  border: 1px solid var(--lamp-line);
  border-radius: var(--radius-lg);
}

.quick-search,
.filter-panel {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.quick-search label,
.filter-panel label {
  color: var(--lamp-gold);
  font-weight: 800;
}

.quick-search input,
.filter-panel input {
  width: 100%;
  min-height: 44px;
  color: #fff;
  background: rgba(15, 15, 15, 0.78);
  border: 1px solid var(--lamp-line);
  border-radius: 12px;
  padding: 0 14px;
  outline: none;
}

.quick-search input:focus,
.filter-panel input:focus {
  border-color: rgba(255, 167, 38, 0.68);
  box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.12);
}

.quick-links {
  margin-top: 14px;
}

.content-section {
  padding: 42px 0;
}

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

.section-heading h2,
.page-banner h1,
.movie-info-panel h1,
.ranking-preview h2 {
  margin: 0;
  background: linear-gradient(90deg, var(--lamp-warm), var(--lamp-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.section-heading p,
.page-banner p,
.category-card p,
.category-overview-card p,
.site-footer p {
  margin: 6px 0 0;
  color: var(--lamp-muted);
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 152px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(33, 27, 24, 0.98), rgba(26, 26, 26, 0.92));
  border: 1px solid var(--lamp-line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 167, 38, 0.44);
  box-shadow: var(--shadow-warm);
}

.category-card strong,
.category-overview-card strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.category-samples {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: rgba(215, 204, 200, 0.62);
  font-size: 12px;
}

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

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

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

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

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

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

.movie-card-link {
  display: grid;
  height: 100%;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.94);
  border: 1px solid var(--lamp-line);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.movie-card-link:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(255, 167, 38, 0.45);
  box-shadow: var(--shadow-warm);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, rgba(78, 52, 46, 0.65), rgba(15, 15, 15, 0.8));
}

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

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

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent 58%);
}

.movie-play-badge,
.movie-type-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.movie-play-badge {
  left: 12px;
  bottom: 12px;
  min-height: 28px;
  padding: 0 10px;
  color: var(--lamp-gold);
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-card-link:hover .movie-play-badge {
  opacity: 1;
}

.movie-type-badge {
  top: 10px;
  right: 10px;
  min-height: 24px;
  padding: 0 8px;
  color: #fff;
  background: rgba(255, 167, 38, 0.88);
}

.movie-info {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.movie-info strong {
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.movie-meta,
.movie-desc {
  color: rgba(215, 204, 200, 0.72);
  font-size: 12px;
}

.movie-desc {
  display: -webkit-box;
  overflow: hidden;
  min-height: 38px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-tags {
  gap: 6px;
}

.movie-tags span {
  min-height: 23px;
  padding: 2px 7px;
  color: rgba(215, 204, 200, 0.78);
  background: rgba(15, 15, 15, 0.58);
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
}

.ranking-preview,
.movie-info-panel,
.category-overview-card,
.player-shell {
  background: rgba(26, 26, 26, 0.94);
  border: 1px solid var(--lamp-line);
  border-radius: var(--radius-lg);
}

.ranking-preview {
  padding: 20px;
}

.ranking-preview h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

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

.rank-item a {
  display: grid;
  grid-template-columns: 54px 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 12px;
  background: rgba(26, 26, 26, 0.94);
  border: 1px solid var(--lamp-line);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.compact-rank .rank-item a {
  grid-template-columns: 42px 58px minmax(0, 1fr);
  min-height: 84px;
}

.rank-item a:hover {
  transform: translateX(4px);
  border-color: rgba(255, 167, 38, 0.45);
}

.rank-number {
  color: var(--lamp-gold);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

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

.compact-rank .rank-item img {
  width: 58px;
  height: 62px;
}

.rank-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.rank-copy strong {
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.rank-copy small,
.rank-copy em {
  overflow: hidden;
  color: rgba(215, 204, 200, 0.66);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.latest-list,
.category-mini-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 10px;
  background: rgba(26, 26, 26, 0.92);
  border: 1px solid var(--lamp-line);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 167, 38, 0.45);
}

.mini-card img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
}

.mini-card span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mini-card strong {
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-card small {
  color: rgba(215, 204, 200, 0.64);
}

.page-banner {
  margin-top: 32px;
  padding: clamp(28px, 6vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(78, 52, 46, 0.56), rgba(26, 26, 26, 0.96)),
    radial-gradient(circle at 80% 0%, rgba(255, 167, 38, 0.16), transparent 26rem);
  border: 1px solid var(--lamp-line);
  border-radius: 24px;
}

.page-banner h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
}

.page-banner p {
  max-width: 780px;
  font-size: 16px;
}

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

.category-overview-card {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.category-overview-link {
  display: grid;
  gap: 10px;
}

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

.movie-detail-wrap {
  padding: 28px 0 54px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(215, 204, 200, 0.66);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--lamp-gold);
}

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

.movie-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  background: #000;
  border: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

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

.player-cover-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 167, 38, 0.18), rgba(0, 0, 0, 0.72));
}

.player-play {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(68px, 10vw, 96px);
  height: clamp(68px, 10vw, 96px);
  padding-left: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--lamp-warm), var(--lamp-gold));
  border-radius: 999px;
  box-shadow: var(--shadow-warm);
  font-size: clamp(30px, 5vw, 44px);
}

.player-message {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: none;
  max-width: min(90%, 560px);
  padding: 10px 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 10px;
  transform: translateX(-50%);
}

.player-message.is-visible {
  display: block;
}

.movie-info-panel {
  margin-top: 24px;
  padding: clamp(22px, 4vw, 38px);
}

.movie-info-panel h1 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
}

.detail-meta,
.detail-tags {
  margin-top: 16px;
}

.detail-block {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--lamp-line);
}

.detail-block h2 {
  margin: 0 0 12px;
  color: var(--lamp-warm);
  font-size: 24px;
}

.detail-block p {
  margin: 0 0 12px;
  color: rgba(215, 204, 200, 0.82);
  white-space: pre-wrap;
}

.lead-text {
  color: #fff !important;
  font-weight: 750;
}

.related-section {
  padding-bottom: 0;
}

.site-footer {
  margin-top: 42px;
  background: rgba(26, 26, 26, 0.95);
  border-top: 1px solid var(--lamp-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 28px;
  padding: 42px 0;
}

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

.site-footer a:not(.footer-brand) {
  display: inline-flex;
  margin: 0 14px 10px 0;
  color: rgba(215, 204, 200, 0.72);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--lamp-gold);
}

.footer-cats {
  display: flex;
  flex-wrap: wrap;
}

.footer-bottom {
  padding: 18px 16px;
  color: rgba(215, 204, 200, 0.56);
  text-align: center;
  border-top: 1px solid var(--lamp-line);
}

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

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

  .split-showcase {
    grid-template-columns: 1fr;
  }
}

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

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

  .brand-copy strong {
    font-size: 19px;
  }

  .hero-carousel {
    min-height: 470px;
  }

  .hero-copy {
    left: 22px;
    right: 22px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-arrow {
    opacity: 1;
  }

  .hero-dots {
    left: 22px;
    right: auto;
  }

  .quick-search,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .movie-grid-home,
  .small-grid,
  .category-movie-grid,
  .related-grid,
  .latest-list,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .rank-item a {
    grid-template-columns: 42px 66px minmax(0, 1fr);
  }

  .rank-item img {
    width: 66px;
    height: 74px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand-copy small {
    display: none;
  }

  .mobile-nav.is-open {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 18px;
  }

  .hero-carousel {
    min-height: 430px;
    border-radius: 16px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 30px;
  }

  .hero-actions {
    gap: 8px;
  }

  .primary-button,
  .ghost-button,
  .quick-search button,
  .section-more,
  .enter-link {
    min-height: 40px;
    padding: 0 14px;
  }

  .category-grid,
  .category-overview-grid,
  .movie-grid,
  .movie-grid-home,
  .small-grid,
  .category-movie-grid,
  .related-grid,
  .latest-list,
  .category-mini-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-link {
    grid-template-columns: 116px minmax(0, 1fr);
  }

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

  .movie-desc {
    min-height: 0;
  }

  .rank-copy em {
    display: none;
  }

  .page-banner {
    border-radius: 16px;
  }
}
