:root {
  --primary: #6d28d9;
  --primary-dark: #5b21b6;
  --secondary: #10b981;
  --dark: #0f172a;
  --light: #f8fafc;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark);
  color: var(--light);
  scroll-behavior: smooth;
}

.mono {
  font-family: "JetBrains Mono", monospace;
}

.gradient-text {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glow {
  box-shadow: 0 0 15px rgba(109, 40, 217, 0.5);
}

.nav-logo {
  max-width: 10%;
}

.glow-hover:hover {
  box-shadow: 0 0 20px rgba(109, 40, 217, 0.7);
}

.dashboard-mockup {
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.8),
    rgba(15, 23, 42, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
}

.feature-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(109, 40, 217, 0.5);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-card {
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.8),
    rgba(15, 23, 42, 0.9)
  );
  border: 1px solid rgba(109, 40, 217, 0.3);
}

.dashboard-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}

.candidate-dashboard {
  animation: float 6s ease-in-out infinite, switchDash 12s infinite;
}

.recruiter-dashboard {
  animation: float 6s ease-in-out infinite 6s, switchDash 12s infinite 6s;
}

@keyframes switchDash {
  0%,
  45% {
    opacity: 1;
    transform: translateY(0px);
    z-index: 1;
  }
  50%,
  95% {
    opacity: 0;
    transform: translateY(20px);
    z-index: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    z-index: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate-pulse-slow {
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes switchDash {
  0%,
  45% {
    opacity: 1;
    transform: translateY(0px);
    z-index: 1;
  }
  50%,
  95% {
    opacity: 0;
    transform: translateY(20px);
    z-index: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    z-index: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.scroll-down-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* New styles for candidate reverse recruiting section */
.section-interviews {
  background: linear-gradient(
    135deg,
    rgba(241, 245, 249, 0.1),
    rgba(226, 232, 240, 0.15)
  );
}

.badge-limited {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, #ec4899, #8b5cf6);
  transform: rotate(3deg);
}

.countdown-item {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(109, 40, 217, 0.3);
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
}

.feature-icon {
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.3);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* New styles for recruiters reverse recruiting section */
.custom-gradient-text {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.custom-glow-hover:hover {
  box-shadow: 0 0 20px rgba(109, 40, 217, 0.7);
}

.custom-feature-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.custom-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(109, 40, 217, 0.5);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.custom-badge-limited {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, #ec4899, #8b5cf6);
  transform: rotate(3deg);
}

.custom-countdown-item {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(109, 40, 217, 0.3);
}

.custom-btn-primary {
  background: linear-gradient(90deg, #6d28d9, #5b21b6);
  transition: all 0.3s ease;
}

.custom-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
}

.custom-feature-icon {
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.3);
}

.custom-pulse {
  animation: custom-pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes custom-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.custom-section-bg {
  background: linear-gradient(
    135deg,
    rgba(241, 245, 249, 0.1),
    rgba(226, 232, 240, 0.15)
  );
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

.ghost-alert-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ghost-alert-bubble {
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.95),
    rgba(15, 23, 42, 0.98)
  );
  border: 1px solid rgba(109, 40, 217, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ghost-alert-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(109, 40, 217, 0.3);
  border-color: rgba(109, 40, 217, 0.5);
}

.ghost-alert-text {
  font-weight: 500;
  white-space: nowrap;
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ghost-alert-icon {
  animation: ghost-alert-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.ghost-alert-button {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.ghost-alert-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(109, 40, 217, 0.3);
}

@keyframes ghost-alert-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .ghost-alert-container {
    bottom: 1rem;
    right: 1rem;
  }

  .ghost-alert-bubble {
    padding: 0.5rem 1rem;
  }

  .ghost-alert-text {
    font-size: 0.875rem;
  }

  .ghost-alert-button {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
}
