/* Home Page Enhancements */
.hero-section-dark {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(42, 157, 143, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(226, 112, 45, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-section-dark .container {
    position: relative;
    z-index: 1;
}

/* Feature card hover effects */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.feature-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Button hover effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3) !important;
}

/* Smooth animations */
* {
    transition: all 0.3s ease;
}

/* Typography improvements */
.limitless-logo {
    font-weight: 700;
    letter-spacing: -2px;
}

.limitless-subtext {
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .limitless-logo {
        font-size: 3rem !important;
    }
    
    .limitless-subtext {
        font-size: 2rem !important;
    }
    
    .hero-section-dark h1 {
        font-size: 2rem !important;
    }
    
    .hero-section-dark .lead {
        font-size: 1.1rem !important;
    }
    
    .feature-preview {
        margin-bottom: 2rem;
    }
}

/* Loading animation for buttons */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.btn-warning {
    animation: pulse 2s infinite;
}