
.achieve-item, .boost-item, .leader-item {
    display: flex; 
    align-items: center; 
    background: #fff; 
    margin-bottom: 10px;
    padding: 12px; 
    border-radius: 16px; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); 
    transition: all 0.3s; 
    pointer-events: auto;
}


.achieve-item.locked { 
    filter: grayscale(100%); 
    opacity: 0.6; 
    background: #f0f0f0; 
}


.achieve-img, .boost-img { 
    width: 50px; 
    height: 50px; 
    margin-right: 12px; 
    border-radius: 8px; 
    object-fit: contain; 
    pointer-events: none; 
}


.achieve-info, .boost-info { flex-grow: 1; }

.achieve-name, .boost-name { 
    font-weight: 800; 
    font-size: 14px; 
    margin-bottom: 2px; 
}

.achieve-desc, .boost-desc { 
    font-size: 11px; 
    color: #777; 
}

.achieve-status { font-size: 18px; }


.buy-btn { 
    background: #4caf50; 
    color: white; 
    border: none; 
    padding: 8px 12px; 
    border-radius: 10px; 
    font-weight: bold; 
    cursor: pointer; 
    min-width: 80px; 
    font-size: 12px; 
    pointer-events: auto; 
}

.buy-btn:disabled { 
    background: #ccc; 
    cursor: not-allowed; 
}


.your-score { 
    background: #e8f5e9; 
    border: 2px solid #a5d6a7; 
    font-weight: bold; 
}