body {
  background-color: #121212;
  color: #e0e7ff;
}

.custom-blue {
  color: #1f87fc;
}
.custom-blue-bg {
  background-color: #1f87fc;
}
.gradient-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.timeline-line {
  background: linear-gradient(to bottom, #1f87fc 0%, #334155 50%, #1f87fc 100%);
}

.pulse-dot {
  animation: pulseDot 2s infinite;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: white;
            overflow-x: hidden;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        }

        .custom-blue {
            color: #3b82f6;
        }

        .custom-blue-bg {
            background: #3b82f6;
        }

        .tech-pattern {
            background-image: 
                radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.3) 1px, transparent 0);
            background-size: 50px 50px;
        }

        .floating-animation {
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
        }

        .pulse-slow {
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .fade-in-up {
            animation: fadeInUp 1s ease-out forwards;
        }

        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .glow-effect {
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
            transition: all 0.3s ease;
        }

        .glow-effect:hover {
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
            transform: translateY(-5px);
        }

        .download-card {
            transition: all 0.3s ease;
        }

        .download-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            transition: all 0.3s ease;
        }

        .download-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .phone-mockup {
            background: linear-gradient(135deg, #1e293b, #334155);
            border-radius: 2rem;
            padding: 1rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .phone-screen {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            border-radius: 1.5rem;
            aspect-ratio: 9/19.5;
            position: relative;
            overflow: hidden;
        }

        .app-preview {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .coin-animation {
            animation: coinFloat 3s ease-in-out infinite;
        }

        @keyframes coinFloat {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-10px) scale(1.1); }
        }

        .download-btn {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border: none;
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
        }

        .stats-counter {
            animation: countUp 2s ease-out forwards;
        }

        @keyframes countUp {
            from { opacity: 0; transform: scale(0.5); }
            to { opacity: 1; transform: scale(1); }
        }

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(31, 135, 252, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(31, 135, 252, 0);
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(50px);
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.roadmap-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(31, 135, 252, 0.2);
}

.progress-bar {
  background: linear-gradient(90deg, #1f87fc 0%, #3b82f6 100%);
  animation: progressFill 2s ease-out;
}

@keyframes progressFill {
  from {
    width: 0%;
  }
}

.floating-icon {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.custom-blue {
  color: #1f87fc;
}
.custom-blue-bg {
  background-color: #1f87fc;
}
.gradient-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.feature-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-12px) rotateY(5deg);
  box-shadow: 0 25px 50px rgba(31, 135, 252, 0.3);
}

.feature-icon {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(31, 135, 252, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
  opacity: 1;
}

.tech-pattern {
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(31, 135, 252, 0.1) 1px,
    transparent 0
  );
  background-size: 40px 40px;
}

.pulse-slow {
  animation: pulseSlow 4s ease-in-out infinite;
}

@keyframes pulseSlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}
.stagger-5 {
  animation-delay: 0.5s;
}
.stagger-6 {
  animation-delay: 0.6s;
}

.custom-blue {
  color: #1f87fc;
}
.custom-blue-bg {
  background-color: #1f87fc;
}
.gradient-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.team-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.team-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 60px rgba(31, 135, 252, 0.25);
}

.team-image {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-card:hover .team-image {
  transform: scale(1.1);
}

.team-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(31, 135, 252, 0.2) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-image::before {
  opacity: 1;
}

.social-links {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.team-card:hover .social-links {
  transform: translateY(0);
  opacity: 1;
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(31, 135, 252, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(31, 135, 252, 0.6);
  }
}

.role-badge {
  background: linear-gradient(45deg, #1f87fc, #3b82f6);
  backdrop-filter: blur(10px);
}

.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}
.stagger-5 {
  animation-delay: 0.5s;
}
.stagger-6 {
  animation-delay: 0.6s;
}

.leadership-card {
  background: linear-gradient(
    135deg,
    rgba(31, 135, 252, 0.1) 0%,
    rgba(59, 130, 246, 0.05) 100%
  );
}

.skill-bar {
  background: linear-gradient(90deg, #1f87fc 0%, #3b82f6 100%);
  animation: skillFill 2s ease-out;
}

@keyframes skillFill {
  from {
    width: 0%;
  }
}
