:root {
  color-scheme: dark;
  --page-bg: #020617;
  --panel: #0f172a;
  --panel-soft: #111c31;
  --card: #1e293b;
  --card-hover: #253449;
  --border: #334155;
  --text: #f8fafc;
  --muted: #94a3b8;
  --subtle: #64748b;
  --ocean: #0ea5e9;
  --ocean-dark: #0284c7;
  --ocean-soft: rgba(14, 165, 233, 0.18);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.15), transparent 30rem),
    radial-gradient(circle at top right, rgba(2, 132, 199, 0.12), transparent 28rem),
    var(--page-bg);
  color: var(--text);
  min-height: 100vh;
}

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

img {
  display: block;
  max-width: 100%;
  background-color: #0f172a;
}

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.94);
  border-bottom: 1px solid rgba(51, 65, 85, 0.75);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 22px;
}

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

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-dark));
  color: white;
  font-size: 16px;
  box-shadow: 0 14px 32px rgba(14, 165, 233, 0.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-text em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  margin-top: 3px;
}

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

.nav-link,
.mobile-link {
  color: #cbd5e1;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: white;
  background: rgba(14, 165, 233, 0.16);
}

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

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  border: 1px solid rgba(51, 65, 85, 0.9);
  outline: none;
  border-radius: 12px;
  color: white;
  background: rgba(2, 6, 23, 0.65);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.header-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 4px var(--ocean-soft);
  background: rgba(2, 6, 23, 0.92);
}

.header-search button,
.mobile-search button,
.primary-button,
.secondary-button,
.section-more {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-search button,
.mobile-search button,
.primary-button {
  color: white;
  background: var(--ocean);
}

.header-search button {
  padding: 10px 14px;
}

.header-search button:hover,
.mobile-search button:hover,
.primary-button:hover {
  background: var(--ocean-dark);
  transform: translateY(-1px);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.95);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: var(--shadow);
  z-index: 90;
}

.search-suggestions.open {
  display: block;
}

.search-suggestions a {
  display: block;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}

.search-suggestions a:last-child {
  border-bottom: 0;
}

.search-suggestions strong {
  display: block;
  font-size: 14px;
  color: white;
}

.search-suggestions span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.search-suggestions a:hover {
  background: rgba(14, 165, 233, 0.12);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.9);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: white;
  border-radius: 2px;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid rgba(51, 65, 85, 0.65);
  background: rgba(15, 23, 42, 0.98);
}

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

.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 14px 0;
}

.mobile-link {
  padding: 12px 14px;
}

.mobile-search {
  width: 100%;
}

.mobile-search input {
  flex: 1;
  padding: 12px;
}

.mobile-search button {
  padding: 12px 14px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #020617;
}

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0) 42%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-panel {
  width: min(680px, 100%);
  padding: 48px 0 70px;
  animation: fadeUp 0.75s ease both;
}

.hero-kicker,
.type-pill,
.category-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  color: white;
  background: var(--ocean-dark);
  font-size: 13px;
  font-weight: 700;
}

.hero-kicker {
  padding: 9px 16px;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 20px 0 0;
  color: #cbd5e1;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0;
  color: #94a3b8;
  font-size: 14px;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
}

.secondary-button,
.section-more {
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.55);
}

.secondary-button:hover,
.section-more:hover {
  color: white;
  border-color: rgba(14, 165, 233, 0.7);
  background: rgba(14, 165, 233, 0.14);
  transform: translateY(-1px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: white;
  background: rgba(15, 23, 42, 0.36);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(14, 165, 233, 0.4);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.active {
  width: 32px;
  background: white;
}

.section {
  padding: 72px 0;
}

.section.tight {
  padding-top: 44px;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-more {
  padding: 12px 16px;
  white-space: nowrap;
}

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

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

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: var(--radius-sm);
  background: rgba(30, 41, 59, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.55);
  background: var(--card-hover);
  box-shadow: var(--shadow-soft);
}

.movie-card .thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.movie-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.thumb-mask,
.gradient-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.gradient-mask {
  opacity: 1;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.82));
}

.movie-card:hover .thumb-mask {
  opacity: 1;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: white;
  background: rgba(14, 165, 233, 0.92);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.32);
  transform: scale(0.92);
  transition: transform 0.22s ease;
}

.movie-card:hover .play-icon {
  transform: scale(1);
}

.play-icon.floating {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
}

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

.type-pill {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  background: rgba(2, 132, 199, 0.92);
}

.rank-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  color: white;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px;
}

.card-body strong {
  color: white;
  font-size: 16px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-desc {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 8px;
  color: #cbd5e1;
  line-height: 1.65;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  margin-top: auto;
  padding-top: 12px;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.5;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.card-tags span,
.tag-list span {
  color: #bae6fd;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  padding: 4px 9px;
  font-size: 12px;
}

.movie-card.horizontal {
  flex-direction: row;
}

.movie-card.horizontal .thumb {
  width: 172px;
  flex-shrink: 0;
}

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

.movie-card.large {
  border-radius: var(--radius);
}

.movie-card.large .card-body strong {
  font-size: 20px;
}

.rail-wrap {
  position: relative;
}

.movie-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(14, 165, 233, 0.6) transparent;
}

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

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(51, 65, 85, 0.65);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.18), transparent 44%),
    rgba(30, 41, 59, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -54px;
  bottom: -64px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.6);
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.28), transparent 50%),
    rgba(30, 41, 59, 0.95);
}

.category-card h2,
.category-card h3 {
  position: relative;
  margin: 0;
  z-index: 1;
  font-size: 22px;
}

.category-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.category-pill {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 8px 12px;
}

.page-hero {
  padding: 70px 0 42px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.12), transparent 45%),
    rgba(2, 6, 23, 0.42);
}

.page-hero h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #cbd5e1;
  line-height: 1.85;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: #bae6fd;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  padding: 16px;
  border: 1px solid rgba(51, 65, 85, 0.65);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.62);
}

.filter-bar input {
  flex: 1 1 280px;
  padding: 13px 14px;
}

.filter-bar select {
  min-width: 150px;
  padding: 13px 14px;
}

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

.detail-top {
  padding: 34px 0 72px;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.75);
  border-radius: 22px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  color: white;
  background: #020617;
  cursor: pointer;
}

.player-cover.hidden {
  display: none;
}

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

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(14, 165, 233, 0.14), transparent 28%),
    rgba(0, 0, 0, 0.55);
}

.player-cover span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
}

.player-cover span i {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.95);
  box-shadow: 0 22px 50px rgba(14, 165, 233, 0.35);
  font-style: normal;
  font-size: 32px;
  transform: translateX(3px);
}

.detail-side {
  border: 1px solid rgba(51, 65, 85, 0.65);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(15, 23, 42, 0.76);
}

.detail-side h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.detail-side p {
  color: #cbd5e1;
  line-height: 1.8;
}

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

.detail-meta div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(30, 41, 59, 0.84);
}

.detail-meta span {
  display: block;
  color: var(--subtle);
  font-size: 12px;
  margin-bottom: 5px;
}

.detail-meta strong {
  font-size: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-block {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(51, 65, 85, 0.65);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
}

.article-block h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.article-block p {
  color: #cbd5e1;
  line-height: 1.9;
}

.info-page {
  padding: 72px 0;
}

.info-card {
  max-width: 920px;
  padding: 30px;
  border: 1px solid rgba(51, 65, 85, 0.65);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
}

.info-card h1 {
  margin-top: 0;
  font-size: clamp(32px, 5vw, 48px);
}

.info-card h2 {
  margin-top: 30px;
}

.info-card p,
.info-card li {
  color: #cbd5e1;
  line-height: 1.85;
}

.site-footer {
  border-top: 1px solid rgba(51, 65, 85, 0.65);
  background: rgba(15, 23, 42, 0.94);
}

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

.footer-brand p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #7dd3fc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(51, 65, 85, 0.55);
  color: var(--subtle);
  font-size: 14px;
}

.empty-state {
  display: none;
  padding: 36px;
  border: 1px solid rgba(51, 65, 85, 0.65);
  border-radius: var(--radius);
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.72);
  text-align: center;
}

.empty-state.show {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

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

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

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

  .hero {
    min-height: 560px;
  }

  .hero-control {
    display: none;
  }

  .hero-panel {
    padding-top: 76px;
  }

  .hero-meta {
    gap: 8px 12px;
  }

  .section {
    padding: 52px 0;
  }

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

  .movie-grid,
  .movie-grid.compact,
  .movie-grid.large-grid,
  .category-grid,
  .rank-list {
    grid-template-columns: 1fr;
  }

  .movie-card.horizontal {
    flex-direction: row;
  }

  .movie-card.horizontal .thumb {
    width: 132px;
  }

  .filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-bar input,
  .filter-bar select {
    width: 100%;
  }

  .detail-top {
    padding-top: 20px;
  }

  .detail-side {
    padding: 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

.category-sample {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.category-sample a {
  color: #bae6fd;
  font-size: 14px;
}

.category-sample a:hover {
  color: white;
}
