/* Text Selector */

html {
  background: #000000!important;
}

::selection {
  background: #dc0d81 !important;
  color: #fff !important;
}

/* Custom Styles */
body {
  font-family: "Roboto", sans-serif;
  background-color: #000000;
  color: #ffffff;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, #dc0d81, #ff4dae);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Gradient */
.hero-gradient {
  background: radial-gradient(circle at center, rgba(220, 13, 129, 0.3) 0%, rgba(0, 0, 0, 1) 70%);
}

/* Feature Card */
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(220, 13, 129, 0.2);
  border: 1px solid rgba(220, 13, 129, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* Search Bar */
.search-bar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.search-bar:focus-within {
  border-color: #dc0d81;
  box-shadow: 0 0 0 2px rgba(220, 13, 129, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: #dc0d81;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background-color: #c00a72;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(220, 13, 129, 0.3);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.btn-primary:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

.btn-outline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Platform Preview */
.platform-preview {
  transition: all 0.5s ease;
}

.platform-preview:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px 5px rgba(220, 13, 129, 0.2);
  border-color: rgba(220, 13, 129, 0.3);
}

/* Footer */
.footer-gradient {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95));
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

/* Animations */
@keyframes pulse-slow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-pulse-slow {
  animation: pulse-slow 3s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .h-screen {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
}

/* Cursor for scroll to features */
#scrollToFeatures {
  cursor: pointer;
}
