/* style.css */

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a; /* Dark background from screenshots */
    color: #e0e0e0; /* Light text color */
}

.feature-card {
    background: linear-gradient(145deg, #2a2a2a, #1f1f1f); /* Subtle gradient */
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #a020f0, #9d4edd);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.section-title {
    color: #a020f0; /* Purple accent color */
    background: linear-gradient(135deg, #8a2be2, #a020f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

/* Enhanced animations for hero section */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(10px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-20px) translateX(15px); }
}

@keyframes morphing {
    0%, 100% { 
        border-radius: 50%;
        transform: scale(1) rotate(0deg);
    }
    25% { 
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: scale(1.1) rotate(90deg);
    }
    50% { 
        border-radius: 20% 80% 20% 80% / 20% 20% 80% 80%;
        transform: scale(0.9) rotate(180deg);
    }
    75% { 
        border-radius: 80% 20% 80% 20% / 80% 80% 20% 20%;
        transform: scale(1.2) rotate(270deg);
    }
}

@keyframes wave {
    0%, 100% { 
        transform: translateY(0px) scaleX(1);
    }
    25% { 
        transform: translateY(-10px) scaleX(1.1);
    }
    50% { 
        transform: translateY(-20px) scaleX(0.9);
    }
    75% { 
        transform: translateY(-5px) scaleX(1.05);
    }
}

@keyframes glow {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 20px currentColor; }
    50% { opacity: 1; box-shadow: 0 0 40px currentColor, 0 0 60px currentColor; }
}

@keyframes gradient-x {
    0%, 100% {
        background-size: 200% 200%;
        background-position: left center;
    }
    50% {
        background-size: 200% 200%;
        background-position: right center;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

@keyframes abstractFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) translateX(15px) rotate(90deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) translateX(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) translateX(5px) rotate(270deg);
        opacity: 0.7;
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-slow {
    animation: floatSlow 6s ease-in-out infinite;
}

.animate-morphing {
    animation: morphing 4s ease-in-out infinite;
}

.animate-wave {
    animation: wave 3s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-gradient-x {
    animation: gradient-x 4s ease infinite;
    background-size: 200% 200%;
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-shimmer {
    animation: shimmer 2s linear infinite;
}

.animate-orbit {
    animation: orbit 10s linear infinite;
}

.animate-abstract-float {
    animation: abstractFloat 8s ease-in-out infinite;
}

/* Enhanced visual elements */
.feature-card img {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover img {
    transform: scale(1.02);
    border-color: rgba(138, 43, 226, 0.2);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.15);
}

/* Improved text blocks in value section */
.value-block {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
}

/* Hero section enhancements */
.hero-title {
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5), 0 0 40px rgba(160, 32, 240, 0.3);
}

/* Abstract art elements */
.abstract-shape {
    mix-blend-mode: screen;
}

/* Download Buttons Styles */
.download-button {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  min-width: 180px;
}

.download-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.download-button:hover::before {
  left: 100%;
}

.app-store-btn {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(30, 30, 30, 0.8));
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.app-store-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.google-play-btn {
  background: linear-gradient(135deg, rgba(52, 168, 83, 0.9), rgba(26, 115, 232, 0.9));
  color: white;
  box-shadow: 0 8px 25px rgba(52, 168, 83, 0.3);
}

.google-play-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(52, 168, 83, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.download-button svg {
  flex-shrink: 0;
}

.download-button:active {
  transform: translateY(-1px) scale(1.01);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .animate-gradient-x {
        animation-duration: 6s;
    }
    
    .animate-morphing {
        animation-duration: 6s;
    }
    
    .animate-abstract-float {
        animation-duration: 10s;
    }
}
