/* =========================================
   CUSTOM SCROLLBAR
========================================= */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: #06b6d4;
  border-radius: 10px;
}

/* =========================================
   BASE STYLES (DARK THEME)
========================================= */

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #ff0055, #ff4d4d);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary {
  padding: 12px 32px;
  border-radius: 50px;
  background: #ff0055;
  color: white;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 85, 0.5);
}

.btn-secondary {
  padding: 12px 32px;
  border-radius: 50px;
  background: transparent;
  color: #faf7f8;
  border: 1px solid #f6f3f4;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 85, 0.5);
  background: #353334;
  color: white;
}

/* Navigation */
.nav-link {
  color: #9ca3af;
  transition: 0.3s;
  text-decoration: none;
}

.nav-link:hover {
  color: white;
}

.nav-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  transition: 0.3s ease;
  cursor: pointer;
}

.nav-btn:hover {
  background: white;
  color: black;
  border-color: white;
  transform: translateY(-2px);
}

/* Section */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: white;
}

/* Base Cards */
.card {
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #ff0055;
}

.card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
}

.card-desc {
  margin-top: 12px;
  color: #9ca3af;
}

/* Backgrounds & Cursor */
#particles-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 0, 85, 0.15), transparent 60%);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: background 0.3s;
}

/* Footer Specific */
.footer-link {
  color: #9ca3af;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-link:hover {
  color: #60a5fa;
  text-decoration: underline;
}

/* =========================================
   HOW IT WORKS SECTION
========================================= */
#how-it-works-section {
  background: transparent;
}

.hiw-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  transition: all 0.3s ease-in-out;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hiw-card:hover {
  transform: translateY(-8px);
  border-color: #6366f1;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.hiw-icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hiw-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  background: #6366f1;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  border: 2px solid #050816;
}

.hiw-title {
  font-size: 1.27rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: white;
}

.hiw-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #9ca3af;
  text-align: center;
}

/* =========================================
   CTA GLASS CARD
========================================= */
.cta-glass-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  padding: 40px;
  color: white;
}

.cta-glass-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}