.bot-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.bot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(25,175,156,0.08);
    border-color: rgba(25,175,156,0.15);
}
html.dark .bot-card {
    background-color: #141414;
    border-color: #2e2e32;
}
html.dark .bot-card:hover {
    border-color: rgba(25,175,156,0.3);
}
