/* Custom CSS for YouTube Automation Landing Page */

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    overflow-x: hidden;
}

.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta-button {
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.4);
}

.urgency-bar {
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* FAQ Accordion Styles */
.faq-question {
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #374151 !important;
    border-color: rgba(168, 85, 247, 0.5);
}

.faq-answer {
    border: 1px solid rgba(75, 85, 99, 0.3);
    border-top: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Gradient text effects */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card hover effects */
.bonus-card {
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    #countdown {
        gap: 0.5rem;
    }
    
    #countdown > div {
        padding: 0.75rem;
    }
    
    #countdown span {
        font-size: 1.5rem;
    }
}

/* Loading and smooth transitions */
.container {
    transition: opacity 0.3s ease;
}

/* Pulse animation for CTA buttons */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 193, 7, 0.6);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Countdown timer styling */
#countdown {
    font-variant-numeric: tabular-nums;
}

#countdown > div {
    min-width: 80px;
    backdrop-filter: blur(10px);
}

/* Social proof and trust badges */
.trust-badge {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}