/* Custom animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(124, 58, 237, 0.8);
    }
}

/* Custom styles */
.play-button {
    animation: pulse-glow 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Google Ads compliant spacing */
.google-ads-container {
    margin: 2rem auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}