body {
  background-color: #020617; 
  color: #f8fafc;
  font-family: system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

.navbar-glass {
  background-color: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.live-badge-bg {
  background-color: rgba(16, 185, 129, 0.08); 
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-card-bg {
  background-color: #0b1329; 
  border: 1px solid #1e293b;
}

.hero-title {
  font-weight: 900;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  max-width: 800px;
  line-height: 1.8;
  color: #94a3b8 !important;
}

.vine-gradient-text {
  background: linear-gradient(135deg, #34d399 0%, #2dd4bf 50%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-vine {
  background: linear-gradient(135deg, #10b981, #0d9488);
  color: #ffffff;
  border: none;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-vine:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.35);
  color: #ffffff;
}

.bg-glow-center {
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Steps Cards Layout Styles */
.step-card {
  background-color: #070e22;
  border: 1px solid #111e3b;
}

.step-number {
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #34d399;
  font-weight: 700;
}

/* Creator Grid Cards Engine Visuals */
.creator-card {
  background-color: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.creator-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.15);
}

.form-control-vine {
  background-color: #0f172a !important;
  border: 1px solid #334155 !important;
  color: #f8fafc !important;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.form-control-vine:focus {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
  outline: none;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #10b981;
  border-radius: 50%;
  animation: loopPulse 2s infinite ease-in-out;
}

@keyframes loopPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}