* {
    font-family: 'Inter', sans-serif;
}

/* Hero spotlight effect */
.hero-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 194, 178, 0.1) 0%, rgba(255, 216, 106, 0.05) 30%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

/* Glow effects */
.glow {
    filter: drop-shadow(0 0 20px rgba(0, 194, 178, 0.3));
}

.glow-button {
    position: relative;
    overflow: hidden;
}

.glow-button:hover {
    box-shadow: 0 0 30px rgba(0, 194, 178, 0.4);
    transform: translateY(-2px);
}

.glow-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.glow-button:hover:before {
    left: 100%;
}

/* Feature cards hover effect */
.feature-card:hover {
    background: rgba(0, 194, 178, 0.1);
    box-shadow: 0 20px 40px rgba(0, 194, 178, 0.1);
    transform: translateY(-5px);
}

/* CTA section glow */
.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-spotlight {
        width: 400px;
        height: 400px;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0D1B;
}

::-webkit-scrollbar-thumb {
    background: #00C2B2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00A89C;
}
