.circle-addition {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #444;
    transition: all 0.3s;
}

.circle-addition:hover {
    box-shadow: 0 4px 15px rgba(var(--accent-color-back), 0.5);
}

.green {
    border-color: var(--success-light);
}

.addition-prompter {
    margin-top: 3px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.addition-prompter:hover {
    transform: scale(1.3);
}

.addition-news {
    margin-top: 3px;
    width: 24px;
    height: 26px;
    cursor: pointer;
    transition: all 0.3s;
}

.addition-news:hover {
    transform: scale(1.3);
}

.addition-achievements {
    margin-top: 1px;
    width: 24px;
    height: 26px;
    cursor: pointer;
    transition: all 0.3s;
}

.addition-achievements:hover {
    transform: scale(1.2);
}

.addition-tg {
    /* margin-top: 1px; */
    margin-right: 4px;
    width: 35px;
    height: 32px;
    cursor: pointer;
    transition: all 0.3s;
}

.addition-tg:hover {
    transform: scale(1.2);
}

.addition-settings-btn {
    background: rgba(var(--accent-color), 0.0);
    border: 0;
    color: var(--accent-color);
    cursor: pointer;
    font-size: 24px;
    margin-bottom: 2px;
    transition: all 0.3s;
}

.addition-settings-btn:hover {
    transform: scale(1.5);
}

/* Стили для мобильных устройств */
@media (max-width: 768px) {
    .mobile-additions {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 300px;
        z-index: 100;
    }
    
    .circle-row {
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
    }
    
    .circle-addition {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .addition-prompter,
    .addition-news,
    .addition-achievements {
        width: 30px;
        height: 30px;
    }
    
    .addition-settings-btn {
        font-size: 28px;
    }
    
    /* Увеличиваем область нажатия для мобильных */
    .circle-addition {
        padding: 5px;
    }
}