/* ================================================================
   VIBEVAULT — INTERACTIVE LAYER v3.0 (Light / Intelligent)
   Particles (subtle) · Cards · Spotlight · Reveals · Equalizer
   ================================================================ */

/* ── PARTICLE CANVAS ───────────────────────────────────────────── */
#vv-particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── SCROLL REVEAL ─────────────────────────────────────────────── */
.vv-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform;
}
.vv-reveal.vv-revealed {
  opacity: 1;
  transform: none;
}

/* ── 3D CARD TILT ──────────────────────────────────────────────── */
.vv-app-card {
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
  will-change: transform;
  position: relative;
  overflow: visible !important;
}

/* Glare shimmer effect */
.vv-app-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(99, 67, 232, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
  border-radius: var(--vv-radius-lg);
}
.vv-app-card:hover::after { opacity: 1; }

/* Spotlight open button on cards */
.vv-card__spotlight-btn {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 10;
  background: rgba(99, 67, 232, 0.2);
  border: 1px solid rgba(99, 67, 232, 0.4);
  color: var(--vv-purple);
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
  cursor: pointer;
}
.vv-app-card:hover .vv-card__spotlight-btn {
  opacity: 1;
  transform: scale(1);
}
.vv-card__spotlight-btn:hover {
  background: rgba(99, 67, 232, 0.4);
  color: white;
}

/* ── EQUALIZER BARS ────────────────────────────────────────────── */
.vv-eq-bars {
  position: absolute;
  bottom: 14px; right: 14px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 20px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}
.vv-app-card:hover .vv-eq-bars { opacity: 1; }
.vv-eq-bars span {
  display: block;
  width: 3px;
  background: linear-gradient(to top, var(--vv-purple), var(--vv-pink));
  border-radius: 2px;
  animation: eqBar 0.8s ease-in-out infinite alternate;
  transform-origin: bottom;
}
.vv-eq-bars span:nth-child(1) { animation-duration: 0.6s; animation-delay: 0s; }
.vv-eq-bars span:nth-child(2) { animation-duration: 0.9s; animation-delay: 0.1s; }
.vv-eq-bars span:nth-child(3) { animation-duration: 0.5s; animation-delay: 0.2s; }
.vv-eq-bars span:nth-child(4) { animation-duration: 0.7s; animation-delay: 0.05s; }
.vv-eq-bars span:nth-child(5) { animation-duration: 0.8s; animation-delay: 0.15s; }

@keyframes eqBar {
  from { height: 4px; }
  to   { height: 18px; }
}

/* ── SEARCH HIGHLIGHT ──────────────────────────────────────────── */
.vv-search-match {
  box-shadow: 0 0 0 2px rgba(99, 67, 232, 0.6), var(--vv-shadow-card) !important;
}

/* ── SHOWCASE TRIGGER BTN ──────────────────────────────────────── */
.vv-showcase-trigger {
  margin-bottom: 24px;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── SPOTLIGHT OVERLAY ─────────────────────────────────────────── */
.vv-spotlight {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(4, 4, 16, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.vv-spotlight.is-active {
  opacity: 1;
  pointer-events: all;
}
body.vv-spotlight-open { overflow: hidden; }

.vv-spotlight__close {
  position: absolute;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--vv-text-muted);
  border-radius: 50%;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
}
.vv-spotlight__close:hover {
  background: rgba(233,79,138,0.2);
  color: var(--vv-pink);
  transform: rotate(90deg);
}

.vv-spotlight__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(99, 67, 232, 0.1);
  border: 1px solid rgba(99, 67, 232, 0.3);
  color: var(--vv-purple);
  border-radius: 50%;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  z-index: 10;
  line-height: 1;
}
.vv-spotlight__nav:hover {
  background: rgba(99, 67, 232, 0.25);
  color: var(--vv-purple);
  transform: translateY(-50%) scale(1.1);
}
.vv-spotlight__nav--prev { left: 24px; }
.vv-spotlight__nav--next { right: 24px; }

.vv-spotlight__stage {
  width: 100%;
  max-width: 900px;
  padding: 0 80px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.vv-spotlight__stage.is-transitioning {
  opacity: 0;
  transform: translateY(12px);
}

.vv-spotlight__card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vv-spotlight__cover {
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: var(--vv-bg-card);
  border: 1px solid var(--vv-border);
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 40px rgba(99, 67, 232, 0.2);
  animation: spotlightFloat 4s ease-in-out infinite;
}
@keyframes spotlightFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.vv-spotlight__info { display: flex; flex-direction: column; gap: 16px; }

.vv-spotlight__title {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  background: var(--vv-grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.vv-spotlight__desc {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.7;
}

.vv-spotlight__cta {
  align-self: flex-start;
  margin-top: 8px;
}

.vv-spotlight__dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 400px;
}
.vv-spotlight__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, width 0.3s;
}
.vv-spotlight__dot.active {
  background: var(--vv-purple);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px var(--vv-purple);
}

.vv-spotlight__counter {
  position: absolute;
  bottom: 28px; right: 36px;
  font-family: var(--vv-font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

/* ── TYPEWRITER HERO ───────────────────────────────────────────── */
.vv-hero__title .line1,
.vv-hero__title .line2 {
  display: block;
  position: relative;
}
.vv-hero__title .line2::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--vv-purple);
  font-weight: 300;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── HERO ENHANCED ─────────────────────────────────────────────── */
.vv-hero {
  position: relative;
  overflow: hidden;
}
.vv-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse, rgba(99,67,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.vv-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(ellipse, rgba(233,79,138,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── NAVBAR HIDE ───────────────────────────────────────────────── */
.vv-navbar.hidden {
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1) !important;
}

/* ── APP GRID HOVER DIMMING ────────────────────────────────────── */
#vv-apps-grid:has(.vv-app-card:hover) .vv-app-card:not(:hover) {
  opacity: 0.7;
  transform: scale(0.99);
  transition: opacity 0.3s, transform 0.3s;
}

/* ── RESPONSIVE SPOTLIGHT ──────────────────────────────────────── */
@media (max-width: 768px) {
  .vv-spotlight__card-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .vv-spotlight__cta { align-self: center; }
  .vv-spotlight__stage { padding: 0 60px; }
  .vv-spotlight__nav--prev { left: 12px; }
  .vv-spotlight__nav--next { right: 12px; }
  .vv-spotlight__cover { max-width: 300px; margin: 0 auto; }
}

/* ── REDUCED MOTION ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .vv-reveal { opacity: 1; transform: none; transition: none; }
  .vv-eq-bars span { animation: none; height: 10px; }
  .vv-spotlight__cover { animation: none; }
  #vv-particles { display: none; }
}

/* ── TAG MARQUEE ───────────────────────────────────────────────── */
.vv-marquee {
  width: 100%;
  overflow: hidden;
  background: rgba(99, 67, 232, 0.06);
  border-top: 1px solid rgba(99, 67, 232, 0.15);
  border-bottom: 1px solid rgba(99, 67, 232, 0.15);
  padding: 10px 0;
  position: relative;
  z-index: 1;
}
.vv-marquee::before,
.vv-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.vv-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--vv-bg), transparent);
}
.vv-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--vv-bg), transparent);
}
.vv-marquee__track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.vv-marquee:hover .vv-marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.vv-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 4px 12px;
  background: rgba(99,67,232,0.08);
  border: 1px solid rgba(99,67,232,0.2);
  border-radius: 20px;
  color: var(--vv-purple);
  font-size: 12px;
  font-family: var(--vv-font-mono);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.vv-marquee__item:hover {
  background: rgba(99,67,232,0.2);
  border-color: var(--vv-purple);
  color: white;
}
.vv-marquee__hash { opacity: 0.5; margin-right: 1px; }

/* ── FEATURED STRIP ────────────────────────────────────────────── */
.vv-featured-strip {
  padding: 48px 0 0;
  position: relative;
  z-index: 1;
}
.vv-featured-strip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.vv-featured-strip__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vv-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--vv-purple);
  text-transform: uppercase;
}
.vv-pulse-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  animation: pulseDot 1.5s ease infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.vv-featured-strip__arrows { display: flex; gap: 8px; }
.vv-strip-arrow {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--vv-text-muted);
  border-radius: 50%;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}
.vv-strip-arrow:hover {
  background: rgba(99,67,232,0.2);
  border-color: rgba(99,67,232,0.4);
  color: var(--vv-purple);
}
.vv-featured-strip__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.vv-featured-strip__track::-webkit-scrollbar { display: none; }

.vv-featured-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
.vv-featured-card__inner {
  display: block;
  background: var(--vv-bg-card);
  border: 1px solid var(--vv-border);
  border-radius: var(--vv-radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.vv-featured-card__inner:hover {
  transform: translateY(-4px);
  border-color: rgba(99,67,232,0.5);
  box-shadow: 0 8px 32px rgba(99,67,232,0.2);
}
.vv-featured-card__cover {
  aspect-ratio: 4/3;
  background: var(--vv-surface);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.vv-featured-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vv-featured-card__inner:hover .vv-featured-card__cover img {
  transform: scale(1.08);
}
.vv-featured-card__emoji { font-size: 40px; }
.vv-featured-card__cover .vv-badge {
  position: absolute;
  top: 8px; left: 8px;
  font-size: 9px;
  padding: 3px 7px;
}
.vv-featured-card__info {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.vv-featured-card__title {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vv-featured-card__likes {
  font-size: 11px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

/* ── TAG FILTER PILLS ──────────────────────────────────────────── */
.vv-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.vv-filter-tags .vv-tag {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--vv-text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.vv-filter-tags .vv-tag:hover {
  background: rgba(99,67,232,0.12);
  border-color: rgba(99,67,232,0.4);
  color: var(--vv-purple);
  transform: translateY(-1px);
}
.vv-filter-tags .vv-tag.active {
  background: rgba(99,67,232,0.2);
  border-color: var(--vv-purple);
  color: var(--vv-purple);
  box-shadow: 0 0 12px rgba(99,67,232,0.3);
}

/* ── CARD HOVER BAR ────────────────────────────────────────────── */
.vv-app-card__hover-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(to top, rgba(10,10,20,0.95) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(.16,1,.3,1);
  z-index: 5;
}
.vv-app-card:hover .vv-app-card__hover-bar,
.vv-app-card:focus-within .vv-app-card__hover-bar {
  transform: translateY(0);
}
.vv-app-card__hover-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #e2e8f0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
  flex: 1;
  justify-content: center;
}
.vv-app-card__hover-btn:hover {
  background: rgba(255,255,255,0.15);
}
.vv-app-card__hover-btn--primary {
  background: linear-gradient(135deg, rgba(99,67,232,0.6), rgba(233,79,138,0.6));
  border-color: rgba(99,67,232,0.4);
}
.vv-app-card__hover-btn--primary:hover {
  background: linear-gradient(135deg, rgba(99,67,232,0.8), rgba(233,79,138,0.8));
}

/* ── CARD COVER PLACEHOLDER ────────────────────────────────────── */
.vv-app-card__cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(99,67,232,0.1) 0%, transparent 70%);
  text-decoration: none;
}
.vv-app-card__cover-emoji { font-size: 3.5rem; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }

/* ── CARD DATE ─────────────────────────────────────────────────── */
.vv-app-card__date { margin-left: auto; }

/* ── GRID DIMMING FALLBACK for browsers without :has ──────────── */
.vv-apps-grid .vv-app-card {
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease, box-shadow 0.15s ease !important;
}

/* ── STATS NUMBERS TARGET ──────────────────────────────────────── */
.vv-stat__value.vv-stats__number,
.vv-stats__number { display: inline; }

/* ── SECTION HEADER spacing fix ────────────────────────────────── */
.vv-section-header { margin-bottom: 16px; }

/* ================================================================
   HERO DECORATIVE GRAPHICS — playful floating shapes & stickers
   ================================================================ */
.vv-hero-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.vv-deco { position: absolute; }

/* Soft color blobs */
.vv-deco--blob1 {
  top: -80px; left: -60px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(99,67,232,0.16) 0%, transparent 70%);
  border-radius: 50%;
  animation: vvBlobFloat 9s ease-in-out infinite;
}
.vv-deco--blob2 {
  top: 30%; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(233,79,138,0.14) 0%, transparent 70%);
  border-radius: 50%;
  animation: vvBlobFloat 11s ease-in-out infinite reverse;
}
.vv-deco--blob3 {
  bottom: -60px; left: 30%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(14,165,184,0.13) 0%, transparent 70%);
  border-radius: 50%;
  animation: vvBlobFloat 8s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes vvBlobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-24px) scale(1.08); }
}

/* Stickers — rotated pill labels */
.vv-deco--sticker {
  background: #ffffff;
  border: 2px solid var(--vv-text);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--vv-text);
  box-shadow: 4px 4px 0 var(--vv-text);
  white-space: nowrap;
  animation: vvStickerFloat 5s ease-in-out infinite;
}
.vv-deco--sticker1 {
  top: 8%; right: 6%;
  transform: rotate(-6deg);
  background: #fef3c7;
  border-color: #d97706;
  box-shadow: 4px 4px 0 #d97706;
  animation-delay: -1s;
}
.vv-deco--sticker2 {
  bottom: 12%; left: 2%;
  transform: rotate(5deg);
  background: #dcfce7;
  border-color: #16a34a;
  box-shadow: 4px 4px 0 #16a34a;
  animation-delay: -2.5s;
}
@keyframes vvStickerFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, -6deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, -6deg)); }
}
.vv-deco--sticker1 { --r: -6deg; }
.vv-deco--sticker2 { --r: 5deg; }

/* Stars */
.vv-deco--star1 { top: 10%; left: 46%; animation: vvSpinSlow 12s linear infinite, vvPop 4s ease-in-out infinite; }
.vv-deco--star2 { bottom: 18%; right: 30%; animation: vvSpinSlow 9s linear infinite reverse, vvPop 5s ease-in-out infinite; animation-delay: -1.5s; }
.vv-deco--star3 { top: 90%; left: 22%; animation: vvSpinSlow 7s linear infinite, vvPop 3.5s ease-in-out infinite; animation-delay: -2s; }
@keyframes vvSpinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes vvPop { 0%, 100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.25); } }

/* Squiggle line */
.vv-deco--squiggle {
  top: 6%; left: 38%;
  opacity: 0.6;
  animation: vvWiggle 6s ease-in-out infinite;
}
@keyframes vvWiggle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(-4deg); }
}

/* Dots */
.vv-deco--dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  animation: vvDotBounce 3s ease-in-out infinite;
}
.vv-deco--dot1 { top: 12%; left: 4%; background: var(--vv-purple); animation-delay: 0s; }
.vv-deco--dot2 { top: 76%; left: 32%; background: var(--vv-pink); width: 7px; height: 7px; animation-delay: -0.8s; }
.vv-deco--dot3 { top: 30%; right: 12%; background: var(--vv-cyan); width: 8px; height: 8px; animation-delay: -1.6s; }
.vv-deco--dot4 { bottom: 26%; right: 36%; background: #facc15; width: 6px; height: 6px; animation-delay: -2.2s; }
@keyframes vvDotBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(-14px); opacity: 1; }
}

/* Dashed ring */
.vv-deco--ring {
  top: 4%; left: 55%;
  opacity: 0.5;
  animation: vvSpinSlow 18s linear infinite;
}

/* Plus marks */
.vv-deco--plus1 { top: 18%; left: 4%; opacity: 0.7; animation: vvDotBounce 4s ease-in-out infinite; animation-delay: -1s; }
.vv-deco--plus2 { top: 72%; left: 42%; opacity: 0.6; animation: vvDotBounce 3.5s ease-in-out infinite; animation-delay: -2.4s; }

/* Floating emoji */
.vv-deco--emoji {
  font-size: 1.8rem;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
  animation: vvBlobFloat 6s ease-in-out infinite;
}
.vv-deco--emoji1 { top: 88%; left: 28%; font-size: 1.7rem; animation-delay: -0.5s; }
.vv-deco--emoji2 { bottom: 8%; right: 26%; font-size: 1.5rem; animation-delay: -2s; }
.vv-deco--emoji3 { top: 16%; right: 6%; font-size: 1.6rem; animation-delay: -3.5s; }

/* Hero positioning fix */
.vv-hero { overflow: visible; }
.vv-hero__inner { position: relative; z-index: 1; }

@media (max-width: 1024px) {
  .vv-deco--sticker, .vv-deco--ring, .vv-deco--squiggle { display: none; }
}
@media (max-width: 768px) {
  .vv-hero-deco { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .vv-deco { animation: none !important; }
}

/* ================================================================
   PREVIEW STACK — bouncier, more playful
   ================================================================ */
.vv-preview-card {
  animation: vvCardBob 5s ease-in-out infinite;
}
.vv-preview-card--1 { animation-delay: -0.6s; }
.vv-preview-card--2 { animation-delay: -2s; }
.vv-preview-card--3 { animation-delay: -3.4s; }
@keyframes vvCardBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}
.vv-preview-card--1 { animation-name: vvCardBob1; }
.vv-preview-card--2 { animation-name: vvCardBob2; }
.vv-preview-card--3 { animation-name: vvCardBob3; }
@keyframes vvCardBob1 {
  0%, 100% { transform: translate(-50%, 10px) rotate(-7deg); }
  50% { transform: translate(-50%, 0px) rotate(-9deg); }
}
@keyframes vvCardBob2 {
  0%, 100% { transform: translate(-50%, 0) rotate(4deg); }
  50% { transform: translate(-50%, -8px) rotate(6deg); }
}
@keyframes vvCardBob3 {
  0%, 100% { transform: translate(-50%, -8px) rotate(-1deg) scale(1.04); }
  50% { transform: translate(-50%, -16px) rotate(1deg) scale(1.04); }
}
.vv-hero__visual:hover .vv-preview-card { animation-play-state: paused; }

.vv-preview-card__body {
  font-size: 2.6rem;
}

.vv-capture-badge {
  animation: vvBadgeFloat 3s ease-in-out infinite;
}
@keyframes vvBadgeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

/* ================================================================
   COLORFUL TAG MARQUEE — alternating accent colors
   ================================================================ */
.vv-marquee__item:nth-child(3n+1) {
  background: rgba(99,67,232,0.08);
  border-color: rgba(99,67,232,0.22);
  color: var(--vv-purple);
}
.vv-marquee__item:nth-child(3n+2) {
  background: rgba(233,79,138,0.08);
  border-color: rgba(233,79,138,0.22);
  color: var(--vv-pink);
}
.vv-marquee__item:nth-child(3n+3) {
  background: rgba(14,165,184,0.08);
  border-color: rgba(14,165,184,0.22);
  color: var(--vv-cyan);
}
.vv-marquee__item:nth-child(3n+1):hover { background: var(--vv-purple); color: #fff; border-color: var(--vv-purple); }
.vv-marquee__item:nth-child(3n+2):hover { background: var(--vv-pink); color: #fff; border-color: var(--vv-pink); }
.vv-marquee__item:nth-child(3n+3):hover { background: var(--vv-cyan); color: #fff; border-color: var(--vv-cyan); }

/* ================================================================
   STATS STRIP — playful icon pop + colored backgrounds
   ================================================================ */
.vv-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  font-size: 1.4rem !important;
  transition: transform 0.2s;
}
.vv-stat:nth-child(4n+1) .vv-stat__icon { background: rgba(99,67,232,0.1); }
.vv-stat:nth-child(4n+2) .vv-stat__icon { background: rgba(233,79,138,0.1); }
.vv-stat:nth-child(4n+3) .vv-stat__icon { background: rgba(14,165,184,0.1); }
.vv-stat:nth-child(4n+4) .vv-stat__icon { background: rgba(234,179,8,0.12); }
.vv-stat:hover .vv-stat__icon { transform: scale(1.12) rotate(-6deg); }

/* ================================================================
   APP CARDS — colorful accent border on hover + corner sparkle
   ================================================================ */
.vv-app-card {
  position: relative;
}
.vv-app-card::before {
  content: '✦';
  position: absolute;
  top: -10px; right: 16px;
  font-size: 18px;
  color: var(--vv-purple);
  opacity: 0;
  transform: scale(0.5) rotate(-20deg);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 6;
  pointer-events: none;
}
.vv-app-card:hover::before {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.vv-apps-grid .vv-app-card:nth-child(5n+1):hover { border-color: rgba(99,67,232,0.4); }
.vv-apps-grid .vv-app-card:nth-child(5n+2):hover { border-color: rgba(233,79,138,0.4); }
.vv-apps-grid .vv-app-card:nth-child(5n+3):hover { border-color: rgba(14,165,184,0.4); }
.vv-apps-grid .vv-app-card:nth-child(5n+4):hover { border-color: rgba(234,179,8,0.4); }
.vv-apps-grid .vv-app-card:nth-child(5n+5):hover { border-color: rgba(26,158,110,0.4); }

/* Cover placeholder colorful background by index */
.vv-apps-grid .vv-app-card:nth-child(5n+1) .vv-app-card__cover-placeholder { background: radial-gradient(ellipse at center, rgba(99,67,232,0.14) 0%, transparent 70%); }
.vv-apps-grid .vv-app-card:nth-child(5n+2) .vv-app-card__cover-placeholder { background: radial-gradient(ellipse at center, rgba(233,79,138,0.14) 0%, transparent 70%); }
.vv-apps-grid .vv-app-card:nth-child(5n+3) .vv-app-card__cover-placeholder { background: radial-gradient(ellipse at center, rgba(14,165,184,0.14) 0%, transparent 70%); }
.vv-apps-grid .vv-app-card:nth-child(5n+4) .vv-app-card__cover-placeholder { background: radial-gradient(ellipse at center, rgba(234,179,8,0.16) 0%, transparent 70%); }
.vv-apps-grid .vv-app-card:nth-child(5n+5) .vv-app-card__cover-placeholder { background: radial-gradient(ellipse at center, rgba(26,158,110,0.14) 0%, transparent 70%); }

/* ================================================================
   SECTION HEADER — playful underline squiggle
   ================================================================ */
.vv-section-title {
  position: relative;
  display: inline-block;
}
.vv-section-title__underline {
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%;
  max-width: 180px;
}

/* ================================================================
   FEATURED STRIP HEADER — colorful label
   ================================================================ */
.vv-featured-strip__label {
  background: linear-gradient(90deg, rgba(99,67,232,0.1), rgba(233,79,138,0.1));
  padding: 6px 14px;
  border-radius: 20px;
}

/* ================================================================
   BUTTON — playful press effect
   ================================================================ */
.vv-btn--primary {
  position: relative;
  overflow: hidden;
}
.vv-btn--primary:active {
  transform: scale(0.96) translateY(0) !important;
}

/* ================================================================
   UPLOAD CARD — friendlier dashed style with bounce icon
   ================================================================ */
.vv-upload-card__icon {
  animation: vvDotBounce 2.5s ease-in-out infinite;
}

/* Confetti squares */
.vv-deco--confetti {
  width: 9px; height: 9px;
  border-radius: 3px;
  animation: vvConfettiSpin 5s linear infinite;
}
.vv-deco--confetti1 { top: 24%; left: 22%; background: var(--vv-pink); animation-delay: -1s; }
.vv-deco--confetti2 { bottom: 16%; right: 16%; background: #facc15; animation-delay: -3s; }
@keyframes vvConfettiSpin {
  0% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(-10px); }
  100% { transform: rotate(360deg) translateY(0); }
}
.vv-deco--tri1 { top: 92%; left: 42%; animation: vvDotBounce 4.5s ease-in-out infinite; animation-delay: -1.8s; }
