/* Home Page Styles */
.hero-section {
    background:
        radial-gradient(circle at 72% 8%, rgba(255, 150, 0, 0.32) 0%, rgba(255, 150, 0, 0) 46%),
        radial-gradient(circle at 12% 88%, rgba(30, 120, 255, 0.22) 0%, rgba(30, 120, 255, 0) 42%),
        linear-gradient(160deg, #020408 0%, #060c18 28%, #0a1525 62%, #050d1a 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -110px 160px rgba(0, 0, 0, 0.38);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 140, 0, 0.09) 0%, rgba(255, 140, 0, 0) 52%),
        radial-gradient(circle at 85% 72%, rgba(100, 200, 255, 0.11) 0%, rgba(100, 200, 255, 0) 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.42) 100%);
    filter: blur(0.3px);
    opacity: 0.82;
}

.main-download-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 25px 60px;
    font-size: 1.8rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.5);
    transition: all 0.3s ease;
    font-weight: bold;
}

.main-download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.7);
}

.bot-card {
    border: none;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.bot-card-icon {
    font-size: 5rem;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.bot-card-title {
    font-size: 1.55rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    color: #333;
}

.bot-card-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    flex: 1;
}

.bot-cta-btn {
    display: inline-block;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.bot-card:hover .bot-cta-btn {
    background: rgba(255, 255, 255, 0.35);
    border-color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.bot-link {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.bot-link:hover {
    transform: scale(1.05);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 5px;
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stats-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .main-download-btn {
        padding: 20px 40px;
        font-size: 1.4rem;
    }

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

    .bot-card-icon {
        font-size: 3.5rem;
    }

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

@media (max-width: 576px) {
    .main-download-btn {
        padding: 18px 35px;
        font-size: 1.2rem;
    }

    .display-2 {
        font-size: 2rem;
    }

    .bot-card-icon {
        font-size: 3rem;
    }
}