@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes subtle-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

body {
    background-color: #0f172a; /* Dark Slate */
    color: #e2e8f0;
    overflow-x: hidden;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(56, 189, 248, 0.1), transparent 70%),
                radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.1), transparent 70%);
    z-index: -1;
}

.glass-card {
    background: rgba(30, 41, 59, 0.5); /* Slate-based glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(51, 65, 85, 0.5);
}

.gradient-text {
    background: linear-gradient(90deg, #38bdf8, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(129, 140, 248, 0.2);
}

.ai-orb {
    animation: subtle-float 6s ease-in-out infinite;
}

.orb-pulse {
    animation: pulse 4s ease-in-out infinite;
}
