/* ================================================================
   StumbleFlow — Design System (Pinterest + TikTok + App)
   ================================================================
   Diseño quirúrgico: tarjetas verticales 9:16, mobile-first,
   experiencia tipo app nativa, sin cuadros vacíos en el grid.
   ================================================================ */

:root {
  --sf-bg-0: #07070d;
  --sf-bg-1: #0c0c16;
  --sf-bg-2: #15152a;
  --sf-card-bg: rgba(20, 20, 36, 0.65);
  --sf-card-border: rgba(255, 255, 255, 0.06);
  --sf-card-border-hover: rgba(168, 85, 247, 0.45);
  --sf-text-0: #f4f4f5;
  --sf-text-1: #cbd5e1;
  --sf-text-2: #94a3b8;
  --sf-text-3: #64748b;
  --sf-purple: #a855f7;
  --sf-pink: #ec4899;
  --sf-cyan: #06b6d4;
  --sf-grad-purple: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --sf-grad-cyan: linear-gradient(135deg, #06b6d4 0%, #a855f7 100%);
  --sf-radius-sm: 12px;
  --sf-radius-md: 18px;
  --sf-radius-lg: 24px;
  --sf-radius-xl: 32px;
  --sf-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --sf-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --sf-shadow-glow: 0 0 24px rgba(168, 85, 247, 0.10);
}

/* ================================================================
   1) Anti-bug Pinterest grid: prevenir cuadros vacíos al scroll
   ================================================================ */
.pinterest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  contain: layout;
}

@media (min-width: 480px)  { .pinterest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 640px)  { .pinterest-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 768px)  { .pinterest-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
@media (min-width: 1024px) { .pinterest-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; } }
@media (min-width: 1280px) { .pinterest-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1536px) { .pinterest-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 22px; } }

.pinterest-item {
  break-inside: avoid;
  margin-bottom: 0;
  min-height: 120px;
  contain: layout style;
  /* Forzar reflow consistente */
  transform: translateZ(0);
}

/* Cuando un item se está cargando (fallback) */
.pinterest-item.is-loading {
  opacity: 0.6;
}

/* ================================================================
   2) Tarjeta tipo Pinterest, formato 9:16 / 4:5 vertical
   ================================================================ */
.sf-card {
  position: relative;
  display: block;
  border-radius: var(--sf-radius-md);
  overflow: hidden;
  background: var(--sf-card-bg);
  border: 1px solid var(--sf-card-border);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  isolation: isolate;
}

.sf-card:hover {
  transform: translateY(-3px);
  border-color: var(--sf-card-border-hover);
  box-shadow: var(--sf-shadow-md);
}

.sf-card-media {
  position: relative;
  width: 100%;
  /* Pinterest-style: 3:4 (más cuadrado, mejor densidad en tablet/desktop) */
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  overflow: hidden;
}

/* Mobile (<480px): cards más altas tipo TikTok */
@media (max-width: 479px) {
  .sf-card-media { aspect-ratio: 4 / 5; }
}

.sf-card-media img,
.sf-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sf-card:hover .sf-card-media img {
  transform: scale(1.04);
}

.sf-card-media .sf-grad-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(7, 7, 13, 0.95) 0%,
    rgba(7, 7, 13, 0.4) 35%,
    transparent 65%);
  pointer-events: none;
}

.sf-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 12px 12px;
  z-index: 2;
}

.sf-card-title {
  color: var(--sf-text-0);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  margin: 0 0 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sf-card-desc {
  color: var(--sf-text-2);
  font-size: 11px;
  line-height: 1.35;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sf-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.sf-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #d8b4fe;
  font-size: 10px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.sf-card-score {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(7, 7, 13, 0.7);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.sf-card-featured {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  /* Sombra más sutil — antes era muy intensa */
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.22);
}

.sf-card-save {
  position: absolute;
  top: 8px; right: 8px;
  z-index: 4;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(7, 7, 13, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
  opacity: 0;
}

.sf-card:hover .sf-card-save { opacity: 1; }
.sf-card-save:hover { background: var(--sf-pink); transform: scale(1.1); }
.sf-card-save.is-saved { background: var(--sf-pink); opacity: 1; }

/* ================================================================
   3) Imagen rota / placeholder
   ================================================================ */
.sf-img-broken {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  color: var(--sf-text-3);
  font-size: 11px;
}

.sf-img-broken svg { width: 32px; height: 32px; opacity: 0.4; }

/* Imagen aún no cargada (skeleton) */
.sf-img-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(30, 30, 50, 0.6) 8%,
    rgba(50, 50, 80, 0.7) 18%,
    rgba(30, 30, 50, 0.6) 33%);
  background-size: 200% 100%;
  animation: sf-shimmer 1.4s linear infinite;
}

@keyframes sf-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ================================================================
   4) Discover (TikTok / Reels) — Layout split en PC
   ================================================================ */
.sf-discover {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--sf-bg-0);
  overflow: hidden;
  z-index: 40;
}

/* Mobile: full-screen vertical (TikTok) */
.sf-discover__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sf-discover__media {
  position: relative;
  flex: 1;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.sf-discover__sidebar {
  display: none;
}

/* Cards stack inside media */
.sf-discover__media .swipe-card {
  position: absolute;
  inset: 0;
  background: #000;
  touch-action: none;
  user-select: none;
  will-change: transform;
}

.sf-discover__media .swipe-card .card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* TikTok style: llena la pantalla */
}

.sf-discover__media .swipe-card .card-video,
.sf-discover__media .swipe-card .card-video iframe,
.sf-discover__media .swipe-card .card-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet+ split-view (md+): imagen 9:16 a la izquierda, contenido a la derecha
   FIX iPad: centrar verticalmente, aspect-ratio se respeta (NO height:100%
   que rompía la proporción). */
@media (min-width: 768px) {
  .sf-discover__stage {
    flex-direction: row;
    align-items: center;     /* centra media + sidebar verticalmente */
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 72px 20px 20px;
    gap: 24px;
  }

  .sf-discover__media {
    flex: 0 0 auto;
    /* Usamos height (no width) como driver y dejamos aspect-ratio respetar.
       Esto hace que la imagen ocupe el alto disponible y se centre. */
    height: min(calc(100vh - 110px), 720px);
    aspect-ratio: 9 / 16;
    width: auto;
    align-self: center;
    border-radius: var(--sf-radius-xl);
    overflow: hidden;
    box-shadow: var(--sf-shadow-md), var(--sf-shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sf-discover__media .swipe-card .card-media,
  .sf-discover__media .swipe-card video,
  .sf-discover__media .swipe-card iframe {
    border-radius: var(--sf-radius-xl);
  }

  .sf-discover__sidebar {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    align-self: center;
    padding: 8px 4px 24px;
    gap: 16px;
  }

  .sf-discover__sidebar::-webkit-scrollbar { width: 6px; }
}

/* iPad / tablets medianas: imagen prominente, no chiquita y perdida */
@media (min-width: 768px) and (max-width: 1023px) {
  .sf-discover__media {
    height: min(calc(100vh - 110px), 700px);
  }
}

/* iPad Pro vertical / pantallas medianas-grandes */
@media (min-width: 1024px) and (max-width: 1279px) {
  .sf-discover__stage {
    max-width: 1100px;
    padding: 80px 28px 28px;
    gap: 28px;
  }
  .sf-discover__media {
    height: min(calc(100vh - 130px), 820px);
  }
  .sf-discover__sidebar {
    max-height: calc(100vh - 130px);
    padding: 12px 8px 24px;
    gap: 18px;
  }
}

/* Desktop grande */
@media (min-width: 1280px) {
  .sf-discover__stage {
    max-width: 1280px;
    padding: 80px 24px 24px;
    gap: 32px;
  }
  .sf-discover__media {
    height: min(calc(100vh - 130px), 880px);
  }
  .sf-discover__sidebar {
    max-height: calc(100vh - 130px);
    padding: 8px 4px 24px;
    gap: 18px;
  }
}

/* Bottom info dentro de la card vertical (mobile + PC) */
.sf-discover__bottom-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 80px;
  padding: 24px 18px 28px;
  z-index: 20;
  color: #fff;
  pointer-events: none;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%);
}

.sf-discover__bottom-info > * { pointer-events: auto; }

@media (min-width: 768px) {
  .sf-discover__bottom-info {
    right: 12px;
    padding: 24px 20px;
  }
}

/* Side actions verticales (TikTok style) */
.sf-discover__actions {
  position: absolute;
  right: 10px;
  bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 25;
  align-items: center;
}

@media (min-width: 768px) {
  .sf-discover__actions {
    right: 14px;
    bottom: 110px;
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .sf-discover__actions {
    bottom: 130px;
  }
}

.sf-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.sf-action-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 36, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.sf-action-btn:hover .sf-action-icon { transform: scale(1.08); }

.sf-action-icon.is-active-like   { background: linear-gradient(135deg, #ef4444, #ec4899); border-color: transparent; }
.sf-action-icon.is-active-save   { background: #f59e0b; border-color: transparent; }
.sf-action-icon.is-active-share  { background: #06b6d4; border-color: transparent; }
.sf-action-icon.is-active-info   { background: var(--sf-purple); border-color: transparent; }
.sf-action-icon.is-active-report { background: #ef4444; border-color: transparent; }

.sf-action-count {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Desktop sidebar panel */
.sf-detail-panel {
  background: var(--sf-card-bg);
  border: 1px solid var(--sf-card-border);
  border-radius: var(--sf-radius-lg);
  padding: 20px;
  backdrop-filter: blur(16px);
}

.sf-detail-panel h3 {
  color: var(--sf-text-0);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
}

.sf-detail-panel .sf-detail-desc {
  color: var(--sf-text-2);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* ================================================================
   5) Tool Detail — Layout boceto 2: imagen | votos | contenido
   ================================================================ */
/* Mobile (<768): stack vertical → cover, vote, info */
.sf-tool-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "cover"
    "vote"
    "info";
}

.sf-tool-layout > .sf-tool-col-cover { grid-area: cover; min-width: 0; }
.sf-tool-layout > .sf-tool-col-vote  { grid-area: vote;  min-width: 0; }
.sf-tool-layout > .sf-tool-info      { grid-area: info;  min-width: 0; }

/* Tablet (768-1279): 2 columnas → cover (izquierda, no estirado) + (vote arriba e info abajo) */
@media (min-width: 768px) and (max-width: 1279px) {
  .sf-tool-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    grid-template-areas:
      "cover vote"
      "cover info";
    gap: 24px;
    align-items: start;
  }
  /* CRÍTICO: la columna cover NO se estira al alto combinado de vote+info;
     se queda en el alto natural de la imagen (3:4). */
  .sf-tool-col-cover {
    align-self: start;
    width: 280px;
    max-width: 280px;
  }
}

/* iPad mini / pequeñas tablets — espacio más limitado, baja un poco */
@media (min-width: 768px) and (max-width: 899px) {
  .sf-tool-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
  }
  .sf-tool-col-cover {
    width: 240px;
    max-width: 240px;
  }
}

/* Desktop (>=1280): 3 cols clásico → cover | vote | info */
@media (min-width: 1280px) {
  .sf-tool-layout {
    grid-template-columns: minmax(0, 360px) minmax(0, auto) minmax(0, 1fr);
    grid-template-areas: "cover vote info";
    gap: 28px;
    align-items: start;
  }
}

.sf-tool-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--sf-radius-xl);
  overflow: hidden;
  background: var(--sf-bg-2);
  box-shadow: var(--sf-shadow-md);
  border: 1px solid var(--sf-card-border);
  /* Cap absoluto para evitar imágenes de pantalla completa en tablet */
  max-height: min(70vh, 640px);
  margin-inline: auto;
  max-width: 100%;
}

.sf-tool-cover img,
.sf-tool-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile: imagen un poco más corta tipo storyboard */
@media (max-width: 767px) {
  .sf-tool-cover {
    aspect-ratio: 4 / 5;
    border-radius: var(--sf-radius-lg);
    max-height: 60vh;
    max-width: 380px;
  }
}

/* Tablet / iPad (768-1279): aspect 3/4, object-fit: cover (recorte limpio centrado).
   Imagen sin distorsión, sin barras blureadas, sin código de fondo asomándose.
   El espacio vacío de la columna queda elegante (sin estirar la imagen). */
@media (min-width: 768px) and (max-width: 1279px) {
  .sf-tool-cover {
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin-inline: auto;
    border-radius: var(--sf-radius-lg);
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  }
  .sf-tool-cover img,
  .sf-tool-cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* recorte limpio sin distorsionar */
    object-position: center; /* centra el contenido relevante */
    background: transparent;
  }
  /* IMPORTANTE: deshabilitar el blur::before — se veía feo con
     screenshots de código (texto difuso a los lados). */
  .sf-tool-cover::before {
    display: none !important;
  }
}

/* Vote stack — Mobile (default): horizontal */
.sf-vote-stack {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--sf-card-bg);
  border: 1px solid var(--sf-card-border);
  border-radius: var(--sf-radius-lg);
  padding: 14px 12px;
  backdrop-filter: blur(16px);
}

/* Tablet: barra horizontal arriba de la info */
@media (min-width: 768px) and (max-width: 1279px) {
  .sf-vote-stack {
    flex-direction: row;
    padding: 12px 14px;
    gap: 12px;
  }
}

/* Desktop: vertical sticky a la izquierda del contenido */
@media (min-width: 1280px) {
  .sf-vote-stack {
    flex-direction: column;
    padding: 18px 14px;
    gap: 14px;
    position: sticky;
    top: 110px;
    align-self: start;
  }
}

.sf-vote-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--sf-radius-md);
  border: 2px solid var(--sf-card-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--sf-text-2);
}

.sf-vote-btn:hover { transform: scale(1.06); }

.sf-vote-btn--up   { color: #22c55e; border-color: rgba(34, 197, 94, 0.3); }
.sf-vote-btn--down { color: #ef4444; border-color: rgba(239, 68, 68, 0.3); }

.sf-vote-btn--up.is-active   { background: #22c55e; color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4); }
.sf-vote-btn--down.is-active { background: #ef4444; color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4); }

.sf-vote-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--sf-radius-md);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.25);
  min-width: 80px;
}

.sf-vote-score__value {
  font-size: 26px;
  font-weight: 800;
  background: var(--sf-grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sf-vote-score__label {
  font-size: 10px;
  color: var(--sf-text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sf-vote-count {
  font-size: 13px;
  font-weight: 700;
}
.sf-vote-count--up   { color: #22c55e; }
.sf-vote-count--down { color: #ef4444; }

/* Right panel: contenido */
.sf-tool-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.sf-glass {
  background: var(--sf-card-bg);
  border: 1px solid var(--sf-card-border);
  border-radius: var(--sf-radius-lg);
  padding: 18px 20px;
  backdrop-filter: blur(16px);
}

/* ================================================================
   6) Mobile bottom nav refinado
   ================================================================ */
@media (max-width: 767px) {
  body {
    --sf-mobile-nav-height: 64px;
  }
}

/* ================================================================
   7) Toasts globales
   ================================================================ */
.sf-toast {
  position: fixed;
  left: 50%;
  bottom: max(env(safe-area-inset-bottom, 0px), 90px);
  transform: translateX(-50%) translateY(20px);
  background: var(--sf-card-bg);
  border: 1px solid var(--sf-card-border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sf-text-0);
  backdrop-filter: blur(20px);
  box-shadow: var(--sf-shadow-md);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sf-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sf-toast--success { border-color: rgba(34, 197, 94, 0.4); color: #4ade80; }
.sf-toast--error   { border-color: rgba(239, 68, 68, 0.4); color: #f87171; }
.sf-toast--info    { border-color: rgba(6, 182, 212, 0.4); color: #67e8f9; }

/* ================================================================
   8) Utilidades
   ================================================================ */
.sf-aspect-9-16 { aspect-ratio: 9 / 16; }
.sf-aspect-4-5  { aspect-ratio: 4 / 5; }
.sf-aspect-1-1  { aspect-ratio: 1 / 1; }

.sf-fade-in {
  animation: sf-fade-in 0.3s ease-out both;
}

@keyframes sf-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* No mostrar borde de focus feo */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--sf-purple);
  outline-offset: 2px;
}

/* Scrollbar elegante */
.sf-scroll {
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 85, 247, 0.4) transparent;
}
.sf-scroll::-webkit-scrollbar { width: 6px; }
.sf-scroll::-webkit-scrollbar-track { background: transparent; }
.sf-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.5), rgba(236, 72, 153, 0.5));
  border-radius: 3px;
}
