:root {
  --honey-50: #fff7ed;
  --honey-100: #ffedd5;
  --honey-300: #fdba74;
  --honey-500: #f59e0b;
  --honey-600: #d97706;
  --flame-50: #fff1f2;
  --flame-400: #fb7185;
  --flame-500: #ff6b35;
  --flame-600: #f43f1f;
  --phoenix-500: #ef4444;
  --phoenix-600: #dc2626;
  --ink: #111827;
  --muted: #6b7280;
  --line: rgba(17, 24, 39, 0.1);
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
  --soft-shadow: 0 12px 28px rgba(17, 24, 39, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 32rem),
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.18), transparent 34rem),
    linear-gradient(135deg, var(--honey-50), #ffffff 45%, var(--flame-50));
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.98), rgba(255, 107, 53, 0.98), rgba(220, 38, 38, 0.98));
  box-shadow: 0 12px 32px rgba(127, 29, 29, 0.18);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo {
  color: #ffffff;
  font-size: 24px;
  white-space: nowrap;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  color: rgba(255, 255, 255, 0.92);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.nav-link.subtle {
  font-size: 14px;
  opacity: 0.88;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 2px;
}

.hero {
  position: relative;
  height: min(72vh, 640px);
  min-height: 520px;
  overflow: hidden;
  background: #111827;
}

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

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

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

.hero-slide.is-active img {
  animation: heroFloat 8s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.54) 46%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.58), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.hero-panel {
  max-width: 680px;
  color: #ffffff;
  animation: panelRise 0.7s ease both;
}

.hero-tags,
.meta-row,
.movie-tags,
.card-tags,
.detail-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-pill,
.category-pill,
.score-pill,
.poster-badge,
.tag-chip,
.card-tags span,
.detail-tags span,
.movie-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-pill,
.category-pill {
  padding: 8px 15px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(90deg, var(--honey-500), var(--flame-500));
}

.score-pill {
  color: #fbbf24;
  font-weight: 800;
}

.hero h1,
.hero h2 {
  margin: 20px 0 14px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.8;
}

.meta-row {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.74);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--flame-500), var(--phoenix-500));
  box-shadow: 0 16px 34px rgba(239, 68, 68, 0.32);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn-soft {
  color: var(--phoenix-600);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.44);
  cursor: pointer;
  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: 24px;
  transform: translateY(-50%);
}

.hero-next {
  right: 24px;
  transform: translateY(-50%);
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.main-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

.main-section.tint {
  max-width: none;
  background: linear-gradient(90deg, rgba(255, 237, 213, 0.82), rgba(255, 255, 255, 0.72), rgba(255, 241, 242, 0.82));
}

.main-section.tint > .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-kicker {
  color: var(--flame-600);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title h1,
.section-title h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.section-title p,
.page-intro {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}

.search-panel {
  margin: 0 0 28px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(255, 255, 255, 0.66);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.search-box span {
  color: var(--flame-600);
  font-size: 22px;
  font-weight: 900;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-chip {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: #374151;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--flame-500), var(--phoenix-500));
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.26);
  transform: translateY(-1px);
}

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

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

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

.poster-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-link:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--honey-100), var(--flame-50));
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.10));
  transition: opacity 0.25s ease;
}

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

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: var(--flame-500);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.25s ease;
}

.poster-link:hover .poster-play {
  transform: translate(-50%, -50%) scale(1);
}

.poster-badge {
  position: absolute;
  top: 12px;
  z-index: 2;
  padding: 5px 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.poster-badge.left {
  left: 12px;
  background: linear-gradient(90deg, var(--honey-500), var(--flame-500));
}

.poster-badge.right {
  right: 12px;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 14px;
}

.card-body strong {
  min-height: 2.7em;
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.poster-link:hover strong {
  color: var(--flame-600);
}

.card-line {
  min-height: 3em;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
}

.card-meta span:first-child {
  color: #f59e0b;
  font-weight: 800;
}

.card-tags span,
.movie-tags span,
.detail-tags span {
  padding: 4px 8px;
  color: #92400e;
  font-size: 12px;
  background: var(--honey-100);
}

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

.editorial-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

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

.editorial-card:hover img {
  transform: scale(1.07);
}

.editorial-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12));
}

.editorial-copy h3 {
  margin: 10px 0;
  font-size: 28px;
}

.editorial-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

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

.category-card {
  min-height: 210px;
  padding: 24px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--honey-600), var(--flame-500), var(--phoenix-600));
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card h2,
.category-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.category-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.category-card span {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

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

.ranking-link {
  display: grid;
  grid-template-columns: 54px 92px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 136px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ranking-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 900;
  background: linear-gradient(135deg, var(--honey-500), var(--flame-500));
}

.ranking-link img {
  width: 92px;
  height: 122px;
  border-radius: 12px;
  object-fit: cover;
}

.ranking-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ranking-copy strong {
  font-size: 18px;
}

.ranking-copy span {
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ranking-copy em {
  color: var(--flame-600);
  font-style: normal;
  font-weight: 750;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.86fr);
  gap: 28px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--flame-600);
  font-weight: 750;
}

.player-card,
.info-card,
.related-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.player-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-stage video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

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

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

.play-button {
  position: absolute;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  font-size: 34px;
  background: linear-gradient(135deg, var(--flame-500), var(--phoenix-500));
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.42);
  cursor: pointer;
}

.player-caption {
  padding: 18px 22px 22px;
}

.player-caption h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.04em;
}

.info-card,
.related-card {
  padding: 24px;
  margin-top: 22px;
}

.info-card h2,
.related-card h2,
.related-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.info-card p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
}

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

.info-grid div {
  padding: 13px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--honey-50), #ffffff);
  border: 1px solid var(--line);
}

.info-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.info-grid strong {
  display: block;
  margin-top: 5px;
}

.related-list {
  display: grid;
  gap: 12px;
}

.related-link {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.related-link:hover {
  background: var(--honey-50);
}

.related-link img {
  width: 82px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.related-link strong {
  display: block;
  line-height: 1.45;
  margin-bottom: 7px;
}

.related-link span,
.related-link em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.cta-band {
  margin-top: 32px;
  padding: 42px 24px;
  border-radius: 28px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(90deg, var(--honey-600), var(--flame-500), var(--phoenix-600));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.cta-band p {
  margin: 0 auto 22px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.site-footer {
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.78);
  background: #111827;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 24px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 24px;
}

.footer-logo {
  color: #ffffff;
  font-size: 22px;
}

.footer-inner p {
  margin: 12px 0 0;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a:hover {
  color: #ffffff;
}

.copyright {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.52);
}

.searchable-card.is-hidden,
.searchable-card[hidden] {
  display: none;
}

@keyframes heroFloat {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(18px, -10px, 0);
  }
}

@keyframes panelRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@media (max-width: 820px) {
  .header-inner {
    height: auto;
    min-height: 68px;
    padding: 12px 18px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    display: none;
    padding: 14px;
    border-radius: 20px;
    background: rgba(127, 29, 29, 0.96);
    box-shadow: var(--shadow);
  }

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

  .nav-link {
    text-align: center;
  }

  .hero {
    min-height: 560px;
    height: 76vh;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 86px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

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

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

  .section-title {
    display: block;
  }

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

  .editorial-grid,
  .ranking-list {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 520px) {
  .main-section {
    padding: 44px 14px;
  }

  .header-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo {
    font-size: 20px;
  }

  .card-body {
    padding: 12px;
  }

  .card-body strong {
    font-size: 15px;
  }

  .card-line,
  .card-tags {
    display: none;
  }

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

  .ranking-link {
    grid-template-columns: 42px 78px 1fr;
    gap: 10px;
  }

  .ranking-link img {
    width: 78px;
    height: 104px;
  }

  .play-button {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}

.category-samples {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.category-samples a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  line-height: 1.5;
}

.category-samples a:hover {
  color: #ffffff;
}
