/* Bot Pages Common Styles */

/* Hero Section - Base styles, color overridden per page */
.hero-section {
    padding: 80px 0;
    color: white;
}

/* Feature Icons */
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Screenshot Container */
.screenshot-container {
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

/* Rotating Images */
.rotating-image {
    width: 100%;
    display: none;
}

.rotating-image.active {
    display: block;
}

/* Download Button */
.download-btn {
    color: white;
    padding: 20px 50px;
    font-size: 1.5rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
}

/* Benefit Cards */
.benefit-card {
    border: none;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Stats Numbers */
.stat-number {
    font-size: 3rem;
    font-weight: bold;
}

/* Video Container for Responsive YouTube Embeds */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .download-btn {
        padding: 15px 30px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2rem;
    }

    .h3 {
        font-size: 1.2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .benefit-card {
        padding: 20px;
    }
}