
/* Alte Achievement-Karten-Ausgabe entfernt: neue Darstellung nutzt den Bot-Befehle-/Command-Stil. */

.head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.img-placeholder {
    margin-top: auto;
    padding-top: 20px;
}

.img-placeholder::before {
    content: " ";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 2;
    border-radius: 2px;
}

.card-img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(0, 0, 0, 0.2);
    padding: 4px;
    box-sizing: border-box;
    filter: saturate(0.8) brightness(0.6);
    transition: all 0.4s ease;
}

.card:hover .card-img {
    filter: saturate(1) brightness(1);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

/* Bot-Befehle */
.bot-commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.command-category {
    margin-bottom: 20px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.category-header h3 {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin: 0;
}

.category-header svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.command-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 4px;
    transition: transform 0.2s ease, background 0.2s ease;
    cursor: default;
}

.command-card:hover {
    background: rgba(255, 255, 255, 0.07);
}

.cmd-info strong {
    display: block;
    font-family: 'Consolas', monospace;
    color: #fff;
    font-size: 0.95rem;
}

.cmd-info strong span {
    color: var(--accent-gold);
    font-weight: normal;
    opacity: 0.8;

}

.cmd-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}
