/* ================================================================
   CULTURE CAVE — VENDOR LAUNCH BANNER
   ================================================================ */

/* Wrap */
.ccvl-wrap {
  position: relative;
  width: 100%;
  background: #05030f;
  overflow: hidden;
  padding: 48px 24px 36px;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
  border-radius: 20px;
}

/* Particle canvas */
.ccvl-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* All direct children above canvas */
.ccvl-header,
.ccvl-cards,
.ccvl-countdown-wrap,
.ccvl-footer {
  position: relative;
  z-index: 1;
}

/* ── EYEBROW ──────────────────────────────────────── */
.ccvl-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 14px;
}

.ccvl-eyebrow-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a78bfa;
  animation: ccvl-blink 1.4s ease-in-out infinite;
}
.ccvl-eyebrow-dot:last-child { animation-delay: 0.7s; }

@keyframes ccvl-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

/* ── TITLE ──────────────────────────────────────────── */
.ccvl-title {
  text-align: center;
  font-size: clamp(28px, 7vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #fff;
}

.ccvl-title-word {
  display: inline-block;
  margin: 0 8px;
  animation: ccvl-word-drop 0.7s cubic-bezier(.22,1,.36,1) both;
}
.ccvl-title-word:nth-child(1) { animation-delay: 0.1s; }
.ccvl-title-word:nth-child(2) { animation-delay: 0.25s; }
.ccvl-title-word:nth-child(3) { animation-delay: 0.4s; }

.ccvl-title-accent {
  background: linear-gradient(90deg, #c084fc, #22d3ee, #f472b6, #c084fc);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ccvl-word-drop 0.7s cubic-bezier(.22,1,.36,1) 0.25s both,
             ccvl-gradient-pan 4s linear infinite;
}

@keyframes ccvl-word-drop {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ccvl-gradient-pan {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ── SUBTITLE ──────────────────────────────────────── */
.ccvl-subtitle {
  text-align: center;
  font-size: clamp(13px, 2.5vw, 18px);
  color: #cbd5e1;
  margin: 0 auto 40px;
  max-width: 560px;
  line-height: 1.5;
  animation: ccvl-fade-up 0.8s ease 0.55s both;
}

@keyframes ccvl-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CARDS ─────────────────────────────────────────── */
.ccvl-cards {
  display: flex;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.ccvl-card {
  flex: 1;
  min-width: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  animation: ccvl-card-in 0.8s cubic-bezier(.22,1,.36,1) both;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.ccvl-card:nth-child(1) { animation-delay: 0.3s; }
.ccvl-card:nth-child(2) { animation-delay: 0.5s; }

.ccvl-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(168,85,247,0.45);
}

@keyframes ccvl-card-in {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Background image */
.ccvl-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.ccvl-card:hover .ccvl-card-bg { transform: scale(1.07); }

/* Dark gradient overlay */
.ccvl-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,3,15,0.15) 0%,
    rgba(5,3,15,0.1) 40%,
    rgba(5,3,15,0.85) 100%
  );
}

/* Shimmer border */
.ccvl-card-shimmer {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #a855f7, #06b6d4, #f472b6, #a855f7);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ccvl-shimmer-spin 4s linear infinite;
  pointer-events: none;
}

@keyframes ccvl-shimmer-spin {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Card content */
.ccvl-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 16px;
  z-index: 2;
}

.ccvl-card-logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 0;
}

.ccvl-card-badge {
  align-self: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.ccvl-card-logo {
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 18px rgba(168,85,247,0.7));
  animation: ccvl-logo-float 3.5s ease-in-out infinite;
}

.ccvl-card-logo--twisted {
  width: 140%;
  max-width: none;
}

.ccvl-card-logo--spore {
  width: 133%;
  max-width: none;
  position: relative;
  top: -15px;
}

@keyframes ccvl-logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.ccvl-card-name {
  color: #fff;
  font-size: clamp(14px, 3.5vw, 22px);
  font-weight: 900;
  text-align: center;
  line-height: 1.15;
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

.ccvl-card-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ccvl-card-shipping {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Coming Soon badge */
.ccvl-card-cs-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(168,85,247,0.85), rgba(6,182,212,0.85));
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(168,85,247,0.4);
  animation: ccvl-badge-glow 2s ease-in-out infinite;
}

.ccvl-cs-pulse {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: relative;
}
.ccvl-cs-pulse::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: ccvl-pulse-ring 1.5s ease-out infinite;
}

@keyframes ccvl-pulse-ring {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes ccvl-badge-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(168,85,247,0.4); }
  50%       { box-shadow: 0 4px 35px rgba(6,182,212,0.7), 0 0 60px rgba(168,85,247,0.3); }
}

/* ── COUNTDOWN ─────────────────────────────────────── */
.ccvl-countdown-wrap {
  text-align: center;
  margin-bottom: 36px;
  animation: ccvl-fade-up 0.8s ease 0.7s both;
}

.ccvl-countdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a78bfa;
  margin: 0 0 14px;
}

.ccvl-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ccvl-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: 12px;
  padding: 12px 18px 8px;
  min-width: 64px;
}

.ccvl-cd-num {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ccvl-cd-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.ccvl-cd-sep {
  font-size: 28px;
  font-weight: 900;
  color: rgba(168,85,247,0.6);
  margin-bottom: 14px;
}

/* ── FOOTER ─────────────────────────────────────────── */
.ccvl-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: ccvl-fade-up 0.8s ease 0.8s both;
}

.ccvl-footer-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.5));
}
.ccvl-footer-line:last-child {
  background: linear-gradient(90deg, rgba(168,85,247,0.5), transparent);
}

.ccvl-footer-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* ── MOBILE ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .ccvl-wrap {
    padding: 36px 14px 28px;
  }

  .ccvl-cards {
    gap: 10px;
  }

  .ccvl-card {
    aspect-ratio: 2/3;
    border-radius: 14px;
  }

  .ccvl-card-content {
    padding: 12px 10px 12px;
  }

  .ccvl-card-logo--twisted {
    width: 140%;
  }

  .ccvl-card-logo--spore {
    width: 133%;
    top: -15px;
  }

  .ccvl-card-cs-badge {
    font-size: 9px;
    padding: 6px 12px;
    letter-spacing: 1.5px;
  }

  .ccvl-cd-unit {
    min-width: 48px;
    padding: 10px 10px 6px;
  }

  .ccvl-cd-sep {
    font-size: 20px;
  }

  .ccvl-title-word {
    margin: 0 4px;
  }
}
