/* ==================== 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;
    }
}

.app-beta-banner-section {
    margin: 18px 0 26px;
}

.app-beta-banner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 24px 26px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(8, 20, 40, 0.96) 0%, rgba(10, 61, 112, 0.92) 45%, rgba(32, 167, 255, 0.3) 100%);
    border: 1px solid rgba(98, 208, 255, 0.34);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(98, 208, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.app-beta-banner__glow {
    position: absolute;
    inset: -35% auto auto -10%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.app-beta-banner__icon,
.app-beta-banner__content,
.app-beta-banner__action {
    position: relative;
    z-index: 1;
}

.app-beta-banner__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8fe7ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(0, 136, 255, 0.1));
    border: 1px solid rgba(143, 231, 255, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 26px rgba(0, 136, 255, 0.18);
    animation: appBetaFloat 4.5s ease-in-out infinite;
}

.app-beta-banner__badge-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.app-beta-banner__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(143, 231, 255, 0.14);
    border: 1px solid rgba(143, 231, 255, 0.28);
    color: #b6f3ff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.app-beta-banner__new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7dffb3 0%, #34d399 100%);
    color: #032818;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 0 0 0 1px rgba(125, 255, 179, 0.18), 0 8px 18px rgba(52, 211, 153, 0.24);
    animation: appBetaPulse 1.8s ease-in-out infinite;
}

.app-beta-banner__title {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 2px 18px rgba(0, 136, 255, 0.18);
}

.app-beta-banner__desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.97rem;
    line-height: 1.65;
    max-width: 760px;
}

.app-beta-banner__action {
    display: flex;
    justify-content: flex-end;
}

.app-beta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, #52e0ff 0%, #1a9fff 52%, #0078ff 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 136, 255, 0.38), 0 0 24px rgba(82, 224, 255, 0.14);
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.app-beta-banner__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -140%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
    transform: skewX(-22deg);
    animation: appBetaShine 2.8s ease-in-out infinite;
}

.app-beta-banner__btn svg,
.app-beta-banner__btn span,
.app-beta-banner__btn {
    position: relative;
    z-index: 1;
}

.app-beta-banner__btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 36px rgba(0, 136, 255, 0.48), 0 0 30px rgba(82, 224, 255, 0.18);
}

@keyframes appBetaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 1px rgba(125, 255, 179, 0.18), 0 8px 18px rgba(52, 211, 153, 0.24);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 1px rgba(125, 255, 179, 0.24), 0 10px 22px rgba(52, 211, 153, 0.32);
    }
}

@keyframes appBetaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes appBetaShine {
    0% { left: -140%; }
    55% { left: 160%; }
    100% { left: 160%; }
}

@media (max-width: 992px) {
    .app-beta-banner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 24px 22px;
    }

    .app-beta-banner__desc {
        max-width: 100%;
    }

    .app-beta-banner__action {
        width: 100%;
        justify-content: center;
    }

    .app-beta-banner__badge-wrap {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .app-beta-banner-section {
        margin: 16px 0 22px;
    }

    .app-beta-banner {
        gap: 16px;
        padding: 20px 18px;
        border-radius: 18px;
    }

    .app-beta-banner__icon {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }

    .app-beta-banner__title {
        font-size: 1.05rem;
    }

    .app-beta-banner__desc {
        font-size: 0.92rem;
    }

    .app-beta-banner__btn {
        width: 100%;
        justify-content: center;
    }
}
