.about-img {
    float: left;            /* Bild nach links, Text nach rechts */
    width: 300px;           /* Feste Breite, damit es nicht zu groß ist */
    margin-right: 20px;     /* Abstand zum Text rechts */
    margin-bottom: 10px;    /* Abstand zum Text darunter */
}

/* Da die Effekte bereits auf .card-img liegen, 
   funktionieren sie automatisch auch hier. 
   Falls der Hover-Effekt auf der ganzen Box triggern soll: */

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

.commands-summary {
    margin-bottom: 32px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
}

.commands-summary .eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 700;
}

.commands-summary h2 {
    margin: 0 0 14px;
}

.commands-summary p {
    color: var(--text-muted);
    line-height: 1.7;
}

.commands-count-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 24px 0;
}

.count-card {
    padding: 18px 14px;
    border-radius: 14px;
    background: rgba(0,0,0,0.22);
    border: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}

.count-card strong {
    display: block;
    font-size: 1.7rem;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 8px;
}

.count-card span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.commands-total {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .commands-count-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .commands-count-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   SCROLL TO TOP BUTTON
========================================
*/
#toTopBtn {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;                 /* Liegt über fast allem */
    border: 1px solid var(--accent-gold);
    background-color: var(--discord-dark);
    color: var(--accent-gold);
    cursor: pointer;
    padding: 12px;
    border-radius: 4px;          /* Passt zum Kachel-Design */
    transition: opacity .2s ease, transform .2s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

#toTopBtn.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#toTopBtn:hover {
    background-color: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
    transform: translateY(-3px); /* Kleiner Hopser nach oben */
}

#toTopBtn svg {
    width: 20px;
    height: 20px;
    display: block;              /* Verhindert komische Abstände */
}
