/* ZethalMC — Discord Bots page (matches assets/css/portfolio.css) */

body {
    padding-bottom: 60px;
}

.section-head h1 {
    font-size: 2em;
    margin: 0 0 10px 0;
    color: var(--text);
}

.bot-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.bot-entry {
    display: flex;
    gap: 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    scroll-margin-top: 96px;
}

.bot-entry-icon {
    flex: none;
    width: 88px;
    height: 88px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface-alt);
    border: 1px solid var(--border);
}

.bot-entry-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bot-entry-body {
    flex: 1;
    min-width: 0;
}

.bot-entry-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.bot-entry-head h2 {
    margin: 0;
    font-size: 1.4em;
    color: var(--text);
}

.bot-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.78em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--surface-alt);
    white-space: nowrap;
}

.bot-status-active {
    color: var(--accent-bright);
    border-color: var(--accent-bright);
}

.bot-entry-tagline {
    color: var(--text-muted);
    margin: 0 0 16px 0;
}

.bot-feature-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bot-feature-list li {
    background: var(--surface-alt);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.9em;
}

.bot-entry-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.bot-entry-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9em;
    margin: 0;
}

.bot-entry-note::before {
    content: "\1F512";
    font-size: 1.05em;
    line-height: 1;
}

@media (max-width: 700px) {
    .bot-entry {
        flex-direction: column;
        padding: 22px;
    }

    .bot-entry-icon {
        width: 64px;
        height: 64px;
    }

    .bot-entry-actions .btn {
        width: 100%;
        text-align: center;
    }
}
