
.bots-bg-section {
    position: relative;
    z-index: 2;
    background-color: transparent;
    padding: 150px 0 80px 0; 
}

.bots-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.bots-header {
    text-align: center;
    margin-bottom: 40px;
}

.bots-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.02em;
}

.bots-header p {
    color: var(--text-muted, #94a3b8);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bots-container-wrapper {
    background: rgba(14, 17, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 40px;
    padding: 50px 40px;
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.5), 
        inset 0 0 0 1px rgba(0, 210, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow: hidden;
    position: relative;
}

.bots-container-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.bots-marquee-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.bots-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 16px;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: 16px;
    min-width: 100%;
    animation: marquee-scroll 25s linear infinite;
}

.bots-marquee-reverse .marquee-content {
    animation-direction: reverse;
}

.bots-marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 16px));
    }
}

.bot-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px 18px 6px 6px;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.bot-tag:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 210, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3), 
        0 0 15px rgba(0, 210, 255, 0.08);
}

.bot-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}

.bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bot-name {
    font-size: 14.5px;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .bots-container-wrapper {
        padding: 32px 20px;
        border-radius: 32px;
    }
    
    .bot-tag {
        padding: 5px 14px 5px 5px;
        gap: 10px;
    }
    
    .bot-avatar {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .bot-name {
        font-size: 13.5px;
    }
    
    .bots-header h2 {
        font-size: 28px;
    }
}
