/* Gradient blobs/orbs styling */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.blob-blue {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.7) 0%, rgba(37, 99, 235, 0.1) 70%);
}

.blob-purple {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.05) 70%);
}

.blob-cyan {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.5) 0%, rgba(59, 130, 246, 0.1) 70%);
}

.blob-1 {
    width: 400px;
    height: 400px;
    left: -200px;
    top: 20%;
}

.blob-2 {
    width: 300px;
    height: 300px;
    right: -150px;
    top: 40%;
    animation-delay: 1s;
}

.blob-3 {
    width: 500px;
    height: 500px;
    left: 30%;
    top: 10%;
    animation-delay: 2s;
}

.blob-4 {
    width: 350px;
    height: 350px;
    right: 10%;
    bottom: 10%;
    animation-delay: 3s;
}

.blob-5 {
    width: 450px;
    height: 450px;
    left: 10%;
    bottom: 5%;
    animation-delay: 4s;
}

/* Hero section blobs */
.hero .blob-1 {
    width: 600px;
    height: 600px;
    left: -300px;
    top: 0;
}

.hero .blob-2 {
    width: 500px;
    height: 500px;
    right: -250px;
    bottom: -250px;
}

/* Features section blobs */
.features .blob-1 {
    width: 400px;
    height: 400px;
    left: 5%;
    top: 10%;
}

.features .blob-2 {
    width: 350px;
    height: 350px;
    right: 5%;
    bottom: 20%;
}

/* Pricing section blobs */
.pricing .blob-1 {
    width: 450px;
    height: 450px;
    left: -200px;
    top: 30%;
}

.pricing .blob-2 {
    width: 350px;
    height: 350px;
    right: -150px;
    bottom: 10%;
}

/* Download section blobs */
.download .blob-1 {
    width: 500px;
    height: 500px;
    left: 10%;
    opacity: 0.2;
}

.download .blob-2 {
    width: 400px;
    height: 400px;
    right: 10%;
    bottom: -200px;
    opacity: 0.2;
}

/* Animations */
@keyframes float {
    0% {
        transform: translatey(0) scale(1);
    }
    50% {
        transform: translatey(-20px) scale(1.05);
    }
    100% {
        transform: translatey(0) scale(1);
    }
}

/* Add glass effect to cards */
.glass-effect {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

/* Section wrapper for relative positioning */
.section-wrapper {
    position: relative;
    overflow: hidden;
}

/* Add additional glow to featured items */
.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, 
        rgba(59, 130, 246, 0.5) 0%, 
        rgba(37, 99, 235, 0) 50%, 
        rgba(59, 130, 246, 0.5) 100%);
    border-radius: var(--border-radius);
    z-index: -1;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glow-effect:hover::after {
    opacity: 1;
}
