.bots {
    padding: 0 36px 140px;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bot-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bot-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 200, 220, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.bot-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), 0 0 60px rgba(160, 160, 200, 0.1);
}

.bot-card:hover::after {
    opacity: 1;
}

.bot-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.bot-status {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
}

.status-active {
    background: rgba(180, 220, 180, 0.1);
    color: #b0c8b0;
    border: 1px solid rgba(180, 220, 180, 0.2);
}

.status-archived {
    background: rgba(180, 180, 180, 0.06);
    color: #707080;
    border: 1px solid rgba(180, 180, 180, 0.1);
}

.bot-icon {
    font-size: 2rem;
}

.bot-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.bot-tagline {
    font-size: 0.9rem;
    color: var(--accent-dim);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.bot-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.bot-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-sm);
}

.bot-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bot-hikka {
    opacity: 0.7;
}

.bot-hikka:hover {
    opacity: 0.85;
}

.bot-heroku {
    border-color: rgba(180, 180, 210, 0.15);
}

.bot-legacy {
    border-color: rgba(180, 180, 210, 0.12);
}
