/* ==================== TELEGRAM BOT BANNER ==================== */
.bot-banner {
    padding: 60px 0;
}

.bot-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(42, 171, 238, 0.15) 0%, rgba(20, 25, 35, 0.6) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(42, 171, 238, 0.3);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.bot-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(42, 171, 238, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.bot-card__icon {
    flex-shrink: 0;
    color: #2AABEE;
    filter: drop-shadow(0 0 15px rgba(42, 171, 238, 0.4));
    animation: float 4s ease-in-out infinite;
}

.bot-card__content {
    flex-grow: 1;
}

.bot-card__title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.bot-card__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
}

.bot-card__desc strong {
    color: #2AABEE;
}

.bot-card__action {
    flex-shrink: 0;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@media (max-width: 992px) {
    .bot-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .bot-card__desc {
        margin: 0 auto;
    }
}
